From 00b9235e01441ebee812fc25d334381ef0132fe8 Mon Sep 17 00:00:00 2001 From: Daniel Miller Date: Mon, 27 Apr 2020 01:13:19 -0700 Subject: [PATCH 1/3] {Docs} Remove stale reference in README to closed issue about extensions (#12771) --- doc/extensions/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/extensions/README.md b/doc/extensions/README.md index 2b6d1a01aef..46dd325ddbf 100644 --- a/doc/extensions/README.md +++ b/doc/extensions/README.md @@ -12,8 +12,6 @@ What is an Extension? - Currently, we support one extension type, a [Python Wheel](http://pythonwheels.com/). - All extension documentation here refers to this type of extension. -> Extensions should be built with wheel `0.29.0` or `0.30.0` until [#6441](https://github.com/Azure/azure-cli/issues/6441) is resolved - What an Extension is not ------------------------ From 5b621d4ae5ff6f10ca6d191b4f1ebdd1bd5ce7d0 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Fri, 12 Jun 2020 10:25:10 -0700 Subject: [PATCH 2/3] Remove deprecated Job commands --- .../azure/cli/command_modules/iot/_help.py | 32 - .../azure/cli/command_modules/iot/_params.py | 5 +- .../azure/cli/command_modules/iot/commands.py | 7 - .../azure/cli/command_modules/iot/custom.py | 28 - .../iot/mgmt_iot_hub_device/__init__.py | 7 - .../iot/mgmt_iot_hub_device/lib/__init__.py | 17 - .../mgmt_iot_hub_device/lib/credentials.py | 21 - .../iot/mgmt_iot_hub_device/lib/exceptions.py | 24 - .../lib/iot_hub_device_client.py | 117 - .../lib/models/__init__.py | 25 - .../lib/models/authentication.py | 34 - .../lib/models/device_description.py | 88 - .../lib/models/error_details.py | 60 - .../lib/models/symmetric_key.py | 32 - .../lib/models/x509_thumbprint.py | 32 - .../lib/operations/__init__.py | 17 - .../operations/iot_hub_devices_operations.py | 569 -- .../iot/mgmt_iot_hub_device/lib/version.py | 13 - .../swagger_iot_hub_device_identity.json | 676 -- .../recordings/test_iot_hub.yaml | 6020 ++++++++++----- .../hybrid_2019_03_01/test_iot_commands.py | 12 - .../latest/recordings/test_identity_hub.yaml | 1524 ++-- .../tests/latest/recordings/test_iot_hub.yaml | 6464 +++++++++++------ .../iot/tests/latest/test_iot_commands.py | 12 - 24 files changed, 9510 insertions(+), 6326 deletions(-) delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/__init__.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/__init__.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/credentials.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/exceptions.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/iot_hub_device_client.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/__init__.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/authentication.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/device_description.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/error_details.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/symmetric_key.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/x509_thumbprint.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/__init__.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/iot_hub_devices_operations.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/version.py delete mode 100644 src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/swagger_iot_hub_device_identity.json diff --git a/src/azure-cli/azure/cli/command_modules/iot/_help.py b/src/azure-cli/azure/cli/command_modules/iot/_help.py index 724670c0088..e03def5f6ba 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/_help.py +++ b/src/azure-cli/azure/cli/command_modules/iot/_help.py @@ -428,38 +428,6 @@ az iot hub devicestream show -n MyIotHub """ -helps['iot hub job'] = """ -type: group -short-summary: Manage jobs in an IoT hub. -""" - -helps['iot hub job cancel'] = """ -type: command -short-summary: Cancel a job in an IoT hub. -examples: - - name: Cancel a job in an IoT hub. (autogenerated) - text: az iot hub job cancel --hub-name MyHub --job-id JobId - crafted: true -""" - -helps['iot hub job list'] = """ -type: command -short-summary: List the jobs in an IoT hub. -examples: - - name: List the jobs in an IoT hub. (autogenerated) - text: az iot hub job list --hub-name MyHub - crafted: true -""" - -helps['iot hub job show'] = """ -type: command -short-summary: Get the details of a job in an IoT hub. -examples: - - name: Get the details of a job in an IoT hub. (autogenerated) - text: az iot hub job show --hub-name MyHub --job-id JobId - crafted: true -""" - helps['iot hub list'] = """ type: command short-summary: List IoT hubs. diff --git a/src/azure-cli/azure/cli/command_modules/iot/_params.py b/src/azure-cli/azure/cli/command_modules/iot/_params.py index e99d488404d..99a8b4bda31 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/_params.py +++ b/src/azure-cli/azure/cli/command_modules/iot/_params.py @@ -177,7 +177,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements help='The amount of time a SAS URI generated by IoT Hub is valid before it expires,' ' between 1 and 24 hours.') - for subgroup in ['consumer-group', 'policy', 'job', 'certificate', 'routing-endpoint', 'route']: + for subgroup in ['consumer-group', 'policy', 'certificate', 'routing-endpoint', 'route']: with self.argument_context('iot hub {}'.format(subgroup)) as c: c.argument('hub_name', options_list=['--hub-name']) @@ -255,9 +255,6 @@ def load_arguments(self, _): # pylint: disable=too-many-statements c.argument('regenerate_key', options_list=['--renew-key', '--rk'], arg_type=get_enum_type(RenewKeyType), help='Regenerate keys') - with self.argument_context('iot hub job') as c: - c.argument('job_id', id_part='child_name_1', help='Job Id.') - with self.argument_context('iot hub create') as c: c.argument('hub_name', completer=None) c.argument('location', get_location_type(self.cli_ctx), diff --git a/src/azure-cli/azure/cli/command_modules/iot/commands.py b/src/azure-cli/azure/cli/command_modules/iot/commands.py index 2e912ffd864..6b1cf52af01 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/commands.py @@ -125,13 +125,6 @@ def load_command_table(self, _): # pylint: disable=too-many-statements g.custom_command('delete', 'iot_hub_policy_delete', transform=PolicyUpdateResultTransform(self.cli_ctx)) g.custom_command('renew-key', 'iot_hub_policy_key_renew', supports_no_wait=True) - # iot hub job commands - with self.command_group('iot hub job', deprecate_info=self.deprecate(redirect=JOB_DEPRECATION_INFO), - client_factory=iot_hub_service_factory) as g: - g.custom_command('list', 'iot_hub_job_list') - g.custom_command('show', 'iot_hub_job_get') - g.custom_command('cancel', 'iot_hub_job_cancel') - # iot hub routing endpoint commands with self.command_group('iot hub routing-endpoint', client_factory=iot_hub_service_factory) as g: g.custom_command('create', 'iot_hub_routing_endpoint_create', diff --git a/src/azure-cli/azure/cli/command_modules/iot/custom.py b/src/azure-cli/azure/cli/command_modules/iot/custom.py index 59b787f978a..c08147b3f97 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/custom.py +++ b/src/azure-cli/azure/cli/command_modules/iot/custom.py @@ -43,8 +43,6 @@ from azure.mgmt.iotcentral.models import (AppSkuInfo, App) -from azure.cli.command_modules.iot.mgmt_iot_hub_device.lib.iot_hub_device_client import IotHubDeviceClient -from azure.cli.command_modules.iot.sas_token_auth import SasTokenAuthentication from azure.cli.command_modules.iot.shared import EndpointType, EncodingFormat, RenewKeyType, AuthenticationType from ._constants import PNP_ENDPOINT from ._client_factory import resource_service_factory, get_pnp_client @@ -662,21 +660,6 @@ def _is_policy_existed(policies, policy_name): return policy_name.lower() in policy_set -def iot_hub_job_list(client, hub_name, resource_group_name=None): - resource_group_name = _ensure_resource_group_name(client, resource_group_name, hub_name) - return client.iot_hub_resource.list_jobs(resource_group_name, hub_name) - - -def iot_hub_job_get(client, hub_name, job_id, resource_group_name=None): - resource_group_name = _ensure_resource_group_name(client, resource_group_name, hub_name) - return client.iot_hub_resource.get_job(resource_group_name, hub_name, job_id) - - -def iot_hub_job_cancel(client, hub_name, job_id, resource_group_name=None): - device_client = _get_device_client(client, resource_group_name, hub_name, '') - return device_client.cancel_job(job_id) - - def iot_hub_get_quota_metrics(client, hub_name, resource_group_name=None): resource_group_name = _ensure_resource_group_name(client, resource_group_name, hub_name) iotHubQuotaMetricCollection = [] @@ -1025,17 +1008,6 @@ def _pnp_create_update_authkeys(cmd, client, repo_endpoint, repo_id, user_role, custom_headers=headers) -def _get_device_client(client, resource_group_name, hub_name, device_id): - resource_group_name = _ensure_resource_group_name(client, resource_group_name, hub_name) - # Intermediate fix to support domains beyond azure-devices.net - hub = _get_iot_hub_by_name(client, hub_name) - base_url = hub.properties.host_name - uri = '{0}/devices/{1}'.format(base_url, device_id) - access_policy = iot_hub_policy_get(client, hub_name, 'iothubowner', resource_group_name) - creds = SasTokenAuthentication(uri, access_policy.key_name, access_policy.primary_key) - return IotHubDeviceClient(creds, client.iot_hub_resource.config.subscription_id, base_url='https://' + base_url).iot_hub_devices - - def _get_iot_hub_by_name(client, hub_name): all_hubs = iot_hub_list(client) if all_hubs is None: diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/__init__.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/__init__.py deleted file mode 100644 index a9dfa5391b9..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import pkg_resources -pkg_resources.declare_namespace(__name__) diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/__init__.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/__init__.py deleted file mode 100644 index 112bbcb1524..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from .iot_hub_device_client import IotHubDeviceClient -from .version import VERSION - -__all__ = ['IotHubDeviceClient'] - -__version__ = VERSION diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/credentials.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/credentials.py deleted file mode 100644 index 0cb7c7a9db7..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/credentials.py +++ /dev/null @@ -1,21 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.authentication import ( - BasicAuthentication, - BasicTokenAuthentication, - OAuthTokenAuthentication) - -from msrestazure.azure_active_directory import ( - InteractiveCredentials, - ServicePrincipalCredentials, - UserPassCredentials) diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/exceptions.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/exceptions.py deleted file mode 100644 index 27c8973ffef..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/exceptions.py +++ /dev/null @@ -1,24 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.exceptions import ( - ClientException, - SerializationError, - DeserializationError, - TokenExpiredError, - ClientRequestError, - AuthenticationError, - HttpOperationError, - ValidationError, -) - -from msrestazure.azure_exceptions import CloudError diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/iot_hub_device_client.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/iot_hub_device_client.py deleted file mode 100644 index 32cf978da1e..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/iot_hub_device_client.py +++ /dev/null @@ -1,117 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.service_client import ServiceClient -from msrest import Serializer, Deserializer -from msrestazure import AzureConfiguration -from .version import VERSION -from .operations.iot_hub_devices_operations import IotHubDevicesOperations -from . import models - - -class IotHubDeviceClientConfiguration(AzureConfiguration): - """Configuration for IotHubDeviceClient - Note that all parameters used to create this instance are saved as instance - attributes. - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: The subscription identifier. - :type subscription_id: str - :param api_version: Version of the Api. - :type api_version: str - :param accept_language: Gets or sets the preferred language for the - response. - :type accept_language: str - :param long_running_operation_retry_timeout: Gets or sets the retry - timeout in seconds for Long Running Operations. Default value is 30. - :type long_running_operation_retry_timeout: int - :param generate_client_request_id: When set to true a unique - x-ms-client-request-id value is generated and included in each request. - Default is true. - :type generate_client_request_id: bool - :param str base_url: Service URL - :param str filepath: Existing config - """ - - def __init__( - self, credentials, subscription_id, api_version='2016-11-14', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, base_url=None, filepath=None): - - if credentials is None: - raise ValueError("Parameter 'credentials' must not be None.") - if subscription_id is None: - raise ValueError("Parameter 'subscription_id' must not be None.") - if not isinstance(subscription_id, str): - raise TypeError("Parameter 'subscription_id' must be str.") - if api_version is not None and not isinstance(api_version, str): - raise TypeError("Optional parameter 'api_version' must be str.") - if accept_language is not None and not isinstance(accept_language, str): - raise TypeError("Optional parameter 'accept_language' must be str.") - if not base_url: - base_url = 'https://example.azure-devices.net' - - super(IotHubDeviceClientConfiguration, self).__init__(base_url, filepath) - - self.add_user_agent('iothubdeviceclient/{}'.format(VERSION)) - self.add_user_agent('Azure-SDK-For-Python') - - self.credentials = credentials - self.subscription_id = subscription_id - self.api_version = api_version - self.accept_language = accept_language - self.long_running_operation_retry_timeout = long_running_operation_retry_timeout - self.generate_client_request_id = generate_client_request_id - - -class IotHubDeviceClient(object): - """API for IoT Hub Device Identities. - - :ivar config: Configuration for client. - :vartype config: IotHubDeviceClientConfiguration - - :ivar iot_hub_devices: IotHubDevices operations - :vartype iot_hub_devices: .operations.IotHubDevicesOperations - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: The subscription identifier. - :type subscription_id: str - :param api_version: Version of the Api. - :type api_version: str - :param accept_language: Gets or sets the preferred language for the - response. - :type accept_language: str - :param long_running_operation_retry_timeout: Gets or sets the retry - timeout in seconds for Long Running Operations. Default value is 30. - :type long_running_operation_retry_timeout: int - :param generate_client_request_id: When set to true a unique - x-ms-client-request-id value is generated and included in each request. - Default is true. - :type generate_client_request_id: bool - :param str base_url: Service URL - :param str filepath: Existing config - """ - - def __init__( - self, credentials, subscription_id, api_version='2016-11-14', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, base_url=None, filepath=None): - - self.config = IotHubDeviceClientConfiguration(credentials, subscription_id, api_version, accept_language, long_running_operation_retry_timeout, generate_client_request_id, base_url, filepath) - self._client = ServiceClient(self.config.credentials, self.config) - - client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self._serialize = Serializer(client_models) - self._deserialize = Deserializer(client_models) - - self.iot_hub_devices = IotHubDevicesOperations( - self._client, self.config, self._serialize, self._deserialize) diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/__init__.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/__init__.py deleted file mode 100644 index c5fb0820bac..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from .error_details import ErrorDetails, ErrorDetailsException -from .device_description import DeviceDescription -from .authentication import Authentication -from .symmetric_key import SymmetricKey -from .x509_thumbprint import X509Thumbprint - -__all__ = [ - 'ErrorDetails', 'ErrorDetailsException', - 'DeviceDescription', - 'Authentication', - 'SymmetricKey', - 'X509Thumbprint', -] diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/authentication.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/authentication.py deleted file mode 100644 index 153a0849ad5..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/authentication.py +++ /dev/null @@ -1,34 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Authentication(Model): - """Authentication information. - - :param symmetric_key: - :type symmetric_key: :class:`SymmetricKey - ` - :param x509_thumbprint: - :type x509_thumbprint: :class:`X509Thumbprint - ` - """ - - _attribute_map = { - 'symmetric_key': {'key': 'symmetricKey', 'type': 'SymmetricKey'}, - 'x509_thumbprint': {'key': 'x509Thumbprint', 'type': 'X509Thumbprint'}, - } - - def __init__(self, symmetric_key=None, x509_thumbprint=None): - self.symmetric_key = symmetric_key - self.x509_thumbprint = x509_thumbprint diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/device_description.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/device_description.py deleted file mode 100644 index 1011a919792..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/device_description.py +++ /dev/null @@ -1,88 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class DeviceDescription(Model): - """Device identity. - - Variables are only populated by the server, and will be ignored when - sending a request. - - :param device_id: Device Id. A case-sensitive string ( up to 128 char - long). - :type device_id: str - :ivar generation_id: An IoT hub-generated case-sensitive string (up to - 128 char long). Used to distinguish devices with the same deviceId when - they have been deleted and recreated. - :vartype generation_id: str - :param etag: A string representing a weak etag for the device identity, - as per RFC7232. - :type etag: str - :param connection_state: 'connected' or 'disconnected', represents the - IoT Hub view of the device connection status. - :type connection_state: str - :param status: 'enabled' or 'disabled', representing status of the device - :type status: str - :param status_reason: A string representing reason of the device status - :type status_reason: str - :param connection_state_updated_time: Date and time of last time the - connection state was updated. In ISO8601 datetime format in UTC, e.g. - 2015-01-28T16:24:48.789Z - :type connection_state_updated_time: datetime - :param status_updated_time: Date and time of last time the status was - updated. In ISO8601 datetime format in UTC, e.g. 2015-01-28T16:24:48.789Z - :type status_updated_time: datetime - :param last_activity_time: Datetime of last time the device connected, - received or sent a message. In ISO8601 datetime format in UTC, e.g. - 2015-01-28T16:24:48.789Z - :type last_activity_time: datetime - :param cloud_to_device_message_count: Number of pending commands that are - in the device command queue. - :type cloud_to_device_message_count: long - :param authentication: - :type authentication: :class:`Authentication - ` - """ - - _validation = { - 'device_id': {'max_length': 128, 'min_length': 1}, - 'generation_id': {'readonly': True}, - } - - _attribute_map = { - 'device_id': {'key': 'deviceId', 'type': 'str'}, - 'generation_id': {'key': 'generationId', 'type': 'str'}, - 'etag': {'key': 'etag', 'type': 'str'}, - 'connection_state': {'key': 'connectionState', 'type': 'str'}, - 'status': {'key': 'status', 'type': 'str'}, - 'status_reason': {'key': 'statusReason', 'type': 'str'}, - 'connection_state_updated_time': {'key': 'connectionStateUpdatedTime', 'type': 'iso-8601'}, - 'status_updated_time': {'key': 'statusUpdatedTime', 'type': 'iso-8601'}, - 'last_activity_time': {'key': 'lastActivityTime', 'type': 'iso-8601'}, - 'cloud_to_device_message_count': {'key': 'cloudToDeviceMessageCount', 'type': 'long'}, - 'authentication': {'key': 'authentication', 'type': 'Authentication'}, - } - - def __init__(self, device_id=None, etag=None, connection_state=None, status=None, status_reason=None, connection_state_updated_time=None, status_updated_time=None, last_activity_time=None, cloud_to_device_message_count=None, authentication=None): - self.device_id = device_id - self.generation_id = None - self.etag = etag - self.connection_state = connection_state - self.status = status - self.status_reason = status_reason - self.connection_state_updated_time = connection_state_updated_time - self.status_updated_time = status_updated_time - self.last_activity_time = last_activity_time - self.cloud_to_device_message_count = cloud_to_device_message_count - self.authentication = authentication diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/error_details.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/error_details.py deleted file mode 100644 index d4528f1c530..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/error_details.py +++ /dev/null @@ -1,60 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model -from msrest.exceptions import HttpOperationError - - -class ErrorDetails(Model): - """The properties related to the details of an error. - - Variables are only populated by the server, and will be ignored when - sending a request. - - :param code: The error code. - :type code: str - :ivar http_status_code: The http status code. - :vartype http_status_code: str - :param message: The error message. - :type message: str - :param details: The error details. - :type details: str - """ - - _validation = { - 'http_status_code': {'readonly': True}, - } - - _attribute_map = { - 'code': {'key': 'Code', 'type': 'str'}, - 'http_status_code': {'key': 'HttpStatusCode', 'type': 'str'}, - 'message': {'key': 'Message', 'type': 'str'}, - 'details': {'key': 'Details', 'type': 'str'}, - } - - def __init__(self, code=None, message=None, details=None): - self.code = code - self.http_status_code = None - self.message = message - self.details = details - - -class ErrorDetailsException(HttpOperationError): - """Server responsed with exception of type: 'ErrorDetails'. - - :param deserialize: A deserializer - :param response: Server response to be deserialized. - """ - - def __init__(self, deserialize, response, *args): - - super(ErrorDetailsException, self).__init__(deserialize, response, 'ErrorDetails', *args) diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/symmetric_key.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/symmetric_key.py deleted file mode 100644 index 0bb4f0d32bb..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/symmetric_key.py +++ /dev/null @@ -1,32 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class SymmetricKey(Model): - """Symmetric keys to access device. - - :param primary_key: The primary key. - :type primary_key: str - :param secondary_key: The secondary key. - :type secondary_key: str - """ - - _attribute_map = { - 'primary_key': {'key': 'primaryKey', 'type': 'str'}, - 'secondary_key': {'key': 'secondaryKey', 'type': 'str'}, - } - - def __init__(self, primary_key=None, secondary_key=None): - self.primary_key = primary_key - self.secondary_key = secondary_key diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/x509_thumbprint.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/x509_thumbprint.py deleted file mode 100644 index 643b1b763d5..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/models/x509_thumbprint.py +++ /dev/null @@ -1,32 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class X509Thumbprint(Model): - """X.509 certificate thumbprint associated with device. - - :param primary_thumbprint: The primary thumbprint. - :type primary_thumbprint: str - :param secondary_thumbprint: The secondary thumbprint. - :type secondary_thumbprint: str - """ - - _attribute_map = { - 'primary_thumbprint': {'key': 'primaryThumbprint', 'type': 'str'}, - 'secondary_thumbprint': {'key': 'secondaryThumbprint', 'type': 'str'}, - } - - def __init__(self, primary_thumbprint=None, secondary_thumbprint=None): - self.primary_thumbprint = primary_thumbprint - self.secondary_thumbprint = secondary_thumbprint diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/__init__.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/__init__.py deleted file mode 100644 index 9e986055104..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from .iot_hub_devices_operations import IotHubDevicesOperations - -__all__ = [ - 'IotHubDevicesOperations', -] diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/iot_hub_devices_operations.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/iot_hub_devices_operations.py deleted file mode 100644 index fa10055977f..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/operations/iot_hub_devices_operations.py +++ /dev/null @@ -1,569 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.pipeline import ClientRawResponse -import uuid - -from .. import models - - -class IotHubDevicesOperations(object): - """IotHubDevicesOperations operations. - - :param client: Client for service requests. - :param config: Configuration of service client. - :param serializer: An object model serializer. - :param deserializer: An objec model deserializer. - """ - - def __init__(self, client, config, serializer, deserializer): - - self._client = client - self._serialize = serializer - self._deserialize = deserializer - - self.config = config - - def create_or_update( - self, device_id, device_description, if_match="*", custom_headers=None, raw=False, **operation_config): - """Creates a new device identity in the identity registry of an IoT Hub. - - Creates a new device identity in the identity registry of an IoT Hub. - - :param device_id: Device Id. - :type device_id: str - :param device_description: request. - :type device_description: :class:`DeviceDescription - ` - :param if_match: Specify the ETag for the device identity. - :type if_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: :class:`DeviceDescription - ` - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1) - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if if_match is not None: - header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(device_description, 'DeviceDescription') - - # Construct and send request - request = self._client.put(url, query_parameters) - response = self._client.send( - request, header_parameters, body_content, **operation_config) - - if response.status_code not in [200, 201]: - raise models.ErrorDetailsException(self._deserialize, response) - - deserialized = None - - if response.status_code == 200: - deserialized = self._deserialize('DeviceDescription', response) - if response.status_code == 201: - deserialized = self._deserialize('DeviceDescription', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - def get( - self, device_id, custom_headers=None, raw=False, **operation_config): - """Get device identity from the identity registry of an IoT Hub. - - Get device identity from the identity registry of an IoT Hub. - - :param device_id: Device Id. - :type device_id: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: :class:`DeviceDescription - ` - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1) - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [200]: - raise models.ErrorDetailsException(self._deserialize, response) - - deserialized = None - - if response.status_code == 200: - deserialized = self._deserialize('DeviceDescription', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - def delete( - self, device_id, if_match="*", custom_headers=None, raw=False, **operation_config): - """Delete a device identity in the identity registry of an IoT Hub. - - Delete a device identity in the identity registry of an IoT Hub. - - :param device_id: Device Id. - :type device_id: str - :param if_match: Specify the ETag for the device identity. - :type if_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: None - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1) - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.delete(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [204]: - raise models.ErrorDetailsException(self._deserialize, response) - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def list( - self, top, custom_headers=None, raw=False, **operation_config): - """List device identities from the identity registry of an IoT Hub. - - List device identities from the identity registry of an IoT Hub. - - :param top: Maximum number of device identities to return. - :type top: int - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: list of :class:`DeviceDescription - ` - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices' - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - query_parameters['top'] = self._serialize.query("top", top, 'int', maximum=1000, minimum=1) - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [200]: - raise models.ErrorDetailsException(self._deserialize, response) - - deserialized = None - - if response.status_code == 200: - deserialized = self._deserialize('[DeviceDescription]', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - def send_message( - self, device_id, message, iot_hub_message_id=None, iot_hub_correlation_id=None, iot_hub_user_id=None, custom_headers=None, raw=False, **operation_config): - """Send a device-to-cloud message. - - Send a device-to-cloud message. - - :param device_id: Device Id. - :type device_id: str - :param message: Message body. - :type message: str - :param iot_hub_message_id: Message Id. - :type iot_hub_message_id: str - :param iot_hub_correlation_id: Message correlation Id. - :type iot_hub_correlation_id: str - :param iot_hub_user_id: User Id. - :type iot_hub_user_id: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: None - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}/messages/events' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1) - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/octet-stream' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if iot_hub_message_id is not None: - header_parameters['IotHub-MessageId'] = self._serialize.header("iot_hub_message_id", iot_hub_message_id, 'str') - if iot_hub_correlation_id is not None: - header_parameters['IotHub-CorrelationId'] = self._serialize.header("iot_hub_correlation_id", iot_hub_correlation_id, 'str') - if iot_hub_user_id is not None: - header_parameters['IotHub-UserId'] = self._serialize.header("iot_hub_user_id", iot_hub_user_id, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body - body_content = self._serialize.body(message, 'str') - - # Construct and send request - request = self._client.post(url, query_parameters) - response = self._client.send( - request, header_parameters, body_content, **operation_config) - - if response.status_code not in [204]: - raise models.ErrorDetailsException(self._deserialize, response) - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def receive_message( - self, device_id, iot_hub_message_lock_timeout=None, custom_headers=None, raw=False, **operation_config): - """Receive a device-to-cloud message. - - Receive a device-to-cloud message. - - :param device_id: Device Id. - :type device_id: str - :param iot_hub_message_lock_timeout: In case a message returned to - this call, this specifies the amount of time, the message will be - invisible to other receive calls. - :type iot_hub_message_lock_timeout: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: str - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}/messages/devicebound' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1) - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if iot_hub_message_lock_timeout is not None: - header_parameters['IotHub-MessageLockTimeout'] = self._serialize.header("iot_hub_message_lock_timeout", iot_hub_message_lock_timeout, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [200, 204]: - raise models.ErrorDetailsException(self._deserialize, response) - - deserialized = None - header_dict = {} - - if response.status_code == 200: - deserialized = self._deserialize('str', response) - header_dict = { - 'ETag': 'str', - 'iothub-sequencenumber': 'str', - 'iothub-enqueuedtime': 'str', - 'iothub-expiry': 'str', - 'iothub-deliverycount': 'str', - 'iothub-messageid': 'str', - 'iothub-correlationid': 'str', - 'iothub-userid': 'str', - 'iothub-to': 'str', - 'iothub-ack': 'str', - 'Content-Type': 'str', - 'Content-Encoding': 'str', - } - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response - - return deserialized - - def complete_or_reject_message( - self, device_id, lock_token, reject=None, custom_headers=None, raw=False, **operation_config): - """Complete or reject a cloud-to-device message. - - Complete or reject a cloud-to-device message. - - :param device_id: Device Id. - :type device_id: str - :param lock_token: Message etag. - :type lock_token: str - :param reject: Reject message flag. - :type reject: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: None - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}/messages/devicebound/{lockToken}' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1), - 'lockToken': self._serialize.url("lock_token", lock_token, 'str') - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - if reject is not None: - query_parameters['reject'] = self._serialize.query("reject", reject, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.delete(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [204]: - raise models.ErrorDetailsException(self._deserialize, response) - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def abandon_message( - self, device_id, lock_token, custom_headers=None, raw=False, **operation_config): - """Abandon a cloud-to-device message. - - Abandon a cloud-to-device message. - - :param device_id: Device Id. - :type device_id: str - :param lock_token: Message etag. - :type lock_token: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: None - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/devices/{deviceId}/messages/devicebound/{lockToken}/abandon' - path_format_arguments = { - 'deviceId': self._serialize.url("device_id", device_id, 'str', max_length=128, min_length=1), - 'lockToken': self._serialize.url("lock_token", lock_token, 'str') - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.post(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [204]: - raise models.ErrorDetailsException(self._deserialize, response) - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def cancel_job( - self, job_id, custom_headers=None, raw=False, **operation_config): - """Cancel a job. - - Cancel a job. - - :param job_id: Job Id. - :type job_id: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :rtype: None - :rtype: :class:`ClientRawResponse` - if raw=true - """ - # Construct URL - url = '/jobs/{jobId}' - path_format_arguments = { - 'jobId': self._serialize.url("job_id", job_id, 'str') - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.config.api_version", self.config.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.delete(url, query_parameters) - response = self._client.send(request, header_parameters, **operation_config) - - if response.status_code not in [204]: - raise models.ErrorDetailsException(self._deserialize, response) - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/version.py b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/version.py deleted file mode 100644 index 78ea68f28c9..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/lib/version.py +++ /dev/null @@ -1,13 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: skip-file -# coding=utf-8 -# -------------------------------------------------------------------------- -# Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -VERSION = "2016-11-14" diff --git a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/swagger_iot_hub_device_identity.json b/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/swagger_iot_hub_device_identity.json deleted file mode 100644 index d6f3f92cfde..00000000000 --- a/src/azure-cli/azure/cli/command_modules/iot/mgmt_iot_hub_device/swagger_iot_hub_device_identity.json +++ /dev/null @@ -1,676 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "2016-11-14", - "title": "iotHubDeviceClient", - "description": "API for IoT Hub Device Identities." - }, - "host": "example.azure-devices.net", - "schemes": [ - "https" - ], - "paths": { - "/devices/{deviceId}": { - "put": { - "tags": [ - "IoTDevices" - ], - "summary": "Creates a new device identity in the identity registry of an IoT Hub.", - "description": "Creates a new device identity in the identity registry of an IoT Hub.", - "operationId": "IotHubDevices_CreateOrUpdate", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "deviceDescription", - "in": "body", - "description": "request.", - "required": true, - "schema": { - "$ref": "#/definitions/DeviceDescription" - } - }, - { - "name": "If-Match", - "in": "header", - "description": "Specify the ETag for the device identity.", - "required": false, - "type": "string", - "default": "*" - } - ], - "responses": { - "200": { - "description": "Created", - "schema": { - "$ref": "#/definitions/DeviceDescription" - } - }, - "201": { - "description": "Created", - "schema": { - "$ref": "#/definitions/DeviceDescription" - } - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - }, - "get" : { - "tags": [ - "IoTDevices" - ], - "summary": "Get device identity from the identity registry of an IoT Hub.", - "description": "Get device identity from the identity registry of an IoT Hub.", - "operationId": "IotHubDevices_Get", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/DeviceDescription" - } - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - }, - "delete" : { - "tags": [ - "IoTDevices" - ], - "summary": "Delete a device identity in the identity registry of an IoT Hub.", - "description": "Delete a device identity in the identity registry of an IoT Hub.", - "operationId": "IotHubDevices_Delete", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "If-Match", - "in": "header", - "description": "Specify the ETag for the device identity.", - "required": true, - "type": "string", - "default": "*" - } - ], - "responses": { - "204": { - "description": "Successfully deleted" - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/devices": { - "get" : { - "tags": [ - "IoTDevices" - ], - "summary": "List device identities from the identity registry of an IoT Hub.", - "description": "List device identities from the identity registry of an IoT Hub.", - "operationId": "IotHubDevices_List", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "top", - "in": "query", - "description": "Maximum number of device identities to return.", - "required": true, - "type": "integer", - "minimum": 1, - "maximum": 1000 - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/DeviceDescription" - } - } - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/devices/{deviceId}/messages/events": { - "post": { - "tags": [ - "IoTDevices" - ], - "summary": "Send a device-to-cloud message.", - "description": "Send a device-to-cloud message.", - "operationId": "IotHubDevices_SendMessage", - "consumes": [ - "application/octet-stream" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "message", - "in": "body", - "description": "Message body.", - "required": true, - "schema": { - "$ref": "#/definitions/MessageBody" - } - }, - { - "name": "IotHub-MessageId", - "in": "header", - "description": "Message Id.", - "required": false, - "type": "string" - }, - { - "name": "IotHub-CorrelationId", - "in": "header", - "description": "Message correlation Id.", - "required": false, - "type": "string" - }, - { - "name": "IotHub-UserId", - "in": "header", - "description": "User Id.", - "required": false, - "type": "string" - } - ], - "responses": { - "204": { - "description": "Message sent." - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/devices/{deviceId}/messages/devicebound": { - "get": { - "tags": [ - "IoTDevices" - ], - "summary": "Receive a device-to-cloud message.", - "description": "Receive a device-to-cloud message.", - "operationId": "IotHubDevices_ReceiveMessage", - "consumes": [ ], - "produces": [ - "application/octet-stream", - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "IotHub-MessageLockTimeout", - "in": "header", - "description": "In case a message returned to this call, this specifies the amount of time, the message will be invisible to other receive calls.", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "Message body.", - "schema": { - "type": "string", - "format": "binary", - "description": "Message body." - }, - "headers": { - "ETag": { - "description": "Id for the message lock used to resolve races when completing, rejecting, or abandoning the message.", - "type": "string" - }, - "iothub-sequencenumber": { - "description": "Message sequence number (assigned by IoTHub, it is unique per cloud-to-device message queue).", - "type": "string" - }, - "iothub-enqueuedtime": { - "description": "Time when the message was received by IoTHub. Format is ISO8601.", - "type": "string" - }, - "iothub-expiry": { - "description": "Time when the message lock will expire. Format is ISO8601.", - "type": "string" - }, - "iothub-deliverycount": { - "description": "Message delivery count system property.", - "type": "string" - }, - "iothub-messageid": { - "description": "MessageId system property.", - "type": "string" - }, - "iothub-correlationid": { - "description": "CorrelationId system property.", - "type": "string" - }, - "iothub-userid": { - "description": "UserId system property.", - "type": "string" - }, - "iothub-to": { - "description": "UserId system property.", - "type": "string" - }, - "iothub-ack": { - "description": "ACK system property.", - "type": "string" - }, - "Content-Type": { - "description": "Content-Type message property.", - "type": "string" - }, - "Content-Encoding": { - "description": "Content-Encoding message property.", - "type": "string" - } - } - }, - "204": { - "description": "No message." - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/devices/{deviceId}/messages/devicebound/{lockToken}": { - "delete": { - "tags": [ - "IoTDevices" - ], - "summary": "Complete or reject a cloud-to-device message.", - "description": "Complete or reject a cloud-to-device message", - "operationId": "IotHubDevices_CompleteOrRejectMessage", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "lockToken", - "in": "path", - "description": "Message etag.", - "required": true, - "type": "string" - }, - { - "name": "reject", - "in": "query", - "description": "Reject message flag.", - "required": false, - "type": "string", - "allowEmptyValue": true - } - ], - "responses": { - "204": { - "description": "Completed or rejected." - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/devices/{deviceId}/messages/devicebound/{lockToken}/abandon": { - "post": { - "tags": [ - "IoTDevices" - ], - "summary": "Abandon a cloud-to-device message.", - "description": "Abandon a cloud-to-device message.", - "operationId": "IotHubDevices_AbandonMessage", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "deviceId", - "in": "path", - "description": "Device Id.", - "required": true, - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - { - "name": "lockToken", - "in": "path", - "description": "Message etag.", - "required": true, - "type": "string" - } - ], - "responses": { - "204": { - "description": "Abandoned." - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - }, - "/jobs/{jobId}": { - "delete": { - "tags": [ - "IoTDevices" - ], - "summary": "Cancel a job.", - "description": "Cancel a job.", - "operationId": "IotHubDevices_CancelJob", - "consumes": [ ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/api-version" - }, - { - "name": "jobId", - "in": "path", - "description": "Job Id.", - "required": true, - "type": "string" - } - ], - "responses": { - "204": { - "description": "Cancelled." - }, - "default": { - "description": "DefaultErrorResponse", - "schema": { - "$ref": "#/definitions/ErrorDetails" - } - } - } - } - } - }, - "definitions": { - "ErrorDetails": { - "description": "The properties related to the details of an error.", - "type": "object", - "properties": { - "Code": { - "description": "The error code.", - "type": "string" - }, - "HttpStatusCode": { - "description": "The http status code.", - "type": "string", - "readOnly": true - }, - "Message": { - "description": "The error message.", - "type": "string" - }, - "Details": { - "description": "The error details.", - "type": "string" - } - } - }, - "DeviceDescription": { - "type": "object", - "description": "Device identity.", - "properties": { - "deviceId": { - "description": "Device Id. A case-sensitive string ( up to 128 char long).", - "type": "string", - "minLength": 1, - "maxLength": 128 - }, - "generationId": { - "description": "An IoT hub-generated case-sensitive string (up to 128 char long). Used to distinguish devices with the same deviceId when they have been deleted and recreated.", - "type": "string", - "readOnly": true - }, - "etag": { - "description": "A string representing a weak etag for the device identity, as per RFC7232.", - "type": "string" - }, - "connectionState": { - "description": "'connected' or 'disconnected', represents the IoT Hub view of the device connection status.", - "type": "string" - }, - "status": { - "description": "'enabled' or 'disabled', representing status of the device", - "type": "string" - }, - "statusReason": { - "description": "A string representing reason of the device status", - "type": "string" - }, - "connectionStateUpdatedTime": { - "description": "Date and time of last time the connection state was updated. In ISO8601 datetime format in UTC, e.g. 2015-01-28T16:24:48.789Z", - "type": "string", - "format": "date-time" - }, - "statusUpdatedTime": { - "description": "Date and time of last time the status was updated. In ISO8601 datetime format in UTC, e.g. 2015-01-28T16:24:48.789Z", - "type": "string", - "format": "date-time" - }, - "lastActivityTime": { - "description": "Datetime of last time the device connected, received or sent a message. In ISO8601 datetime format in UTC, e.g. 2015-01-28T16:24:48.789Z", - "type": "string", - "format": "date-time" - }, - "cloudToDeviceMessageCount": { - "description": "Number of pending commands that are in the device command queue.", - "format": "int64", - "type": "integer" - }, - "authentication": { - "$ref": "#/definitions/Authentication" - } - } - }, - "Authentication": { - "type": "object", - "description": "Authentication information.", - "properties": { - "symmetricKey": { - "$ref": "#/definitions/SymmetricKey" - }, - "x509Thumbprint": { - "$ref": "#/definitions/X509Thumbprint" - } - } - }, - "SymmetricKey": { - "type": "object", - "description": "Symmetric keys to access device.", - "properties": { - "primaryKey": { - "description": "The primary key.", - "type": "string" - }, - "secondaryKey": { - "description": "The secondary key.", - "type": "string" - } - } - }, - "X509Thumbprint": { - "type": "object", - "description": "X.509 certificate thumbprint associated with device.", - "properties": { - "primaryThumbprint": { - "description": "The primary thumbprint.", - "type": "string" - }, - "secondaryThumbprint": { - "description": "The secondary thumbprint.", - "type": "string" - } - } - }, - "MessageBody": { - "type": "string", - "description": "Message body." - } - }, - "parameters": { - "subscriptionId": { - "name": "subscriptionId", - "in": "path", - "description": "The subscription identifier.", - "required": true, - "type": "string" - }, - "api-version": { - "name": "api-version", - "in": "query", - "description": "Version of the Api.", - "required": true, - "type": "string", - "default": "2016-11-14" - } - } -} diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml index 322a92e519a..c90a31a92e2 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml @@ -13,25 +13,26 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-storage/8.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/abcyu","name":"abcyu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T01:47:06.9635093Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T01:47:06.9635093Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T01:47:06.8697316Z","primaryEndpoints":{"blob":"https://abcyu.blob.core.windows.net/","queue":"https://abcyu.queue.core.windows.net/","table":"https://abcyu.table.core.windows.net/","file":"https://abcyu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://abcyu-secondary.blob.core.windows.net/","queue":"https://abcyu-secondary.queue.core.windows.net/","table":"https://abcyu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/abcyutrack2","name":"abcyutrack2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T02:15:25.9814926Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T02:15:25.9814926Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T02:15:25.9033255Z","primaryEndpoints":{"blob":"https://abcyutrack2.blob.core.windows.net/","queue":"https://abcyutrack2.queue.core.windows.net/","table":"https://abcyutrack2.table.core.windows.net/","file":"https://abcyutrack2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://abcyutrack2-secondary.blob.core.windows.net/","queue":"https://abcyutrack2-secondary.queue.core.windows.net/","table":"https://abcyutrack2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/abcyutrack2enablelog","name":"abcyutrack2enablelog","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T02:39:18.6780812Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T02:39:18.6780812Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T02:39:18.5843252Z","primaryEndpoints":{"blob":"https://abcyutrack2enablelog.blob.core.windows.net/","queue":"https://abcyutrack2enablelog.queue.core.windows.net/","table":"https://abcyutrack2enablelog.table.core.windows.net/","file":"https://abcyutrack2enablelog.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://abcyutrack2enablelog-secondary.blob.core.windows.net/","queue":"https://abcyutrack2enablelog-secondary.queue.core.windows.net/","table":"https://abcyutrack2enablelog-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/abcyutrack2enablelog1","name":"abcyutrack2enablelog1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T07:24:07.9936500Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T07:24:07.9936500Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T07:24:07.9155456Z","primaryEndpoints":{"blob":"https://abcyutrack2enablelog1.blob.core.windows.net/","queue":"https://abcyutrack2enablelog1.queue.core.windows.net/","table":"https://abcyutrack2enablelog1.table.core.windows.net/","file":"https://abcyutrack2enablelog1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://abcyutrack2enablelog1-secondary.blob.core.windows.net/","queue":"https://abcyutrack2enablelog1-secondary.queue.core.windows.net/","table":"https://abcyutrack2enablelog1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851","name":"azhoxingtest9851","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T05:43:15.2029670Z","primaryEndpoints":{"blob":"https://azhoxingtest9851.blob.core.windows.net/","queue":"https://azhoxingtest9851.queue.core.windows.net/","table":"https://azhoxingtest9851.table.core.windows.net/","file":"https://azhoxingtest9851.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azurecoreintegration","name":"azurecoreintegration","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T03:00:47.7025418Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T03:00:47.7025418Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T03:00:47.6088349Z","primaryEndpoints":{"blob":"https://azurecoreintegration.blob.core.windows.net/","queue":"https://azurecoreintegration.queue.core.windows.net/","table":"https://azurecoreintegration.table.core.windows.net/","file":"https://azurecoreintegration.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azurecoreintegration-secondary.blob.core.windows.net/","queue":"https://azurecoreintegration-secondary.queue.core.windows.net/","table":"https://azurecoreintegration-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azurecoreintegrationa","name":"azurecoreintegrationa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T07:27:49.7610645Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T07:27:49.7610645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T07:27:49.6673126Z","primaryEndpoints":{"blob":"https://azurecoreintegrationa.blob.core.windows.net/","queue":"https://azurecoreintegrationa.queue.core.windows.net/","table":"https://azurecoreintegrationa.table.core.windows.net/","file":"https://azurecoreintegrationa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azurecoreintegrationa-secondary.blob.core.windows.net/","queue":"https://azurecoreintegrationa-secondary.queue.core.windows.net/","table":"https://azurecoreintegrationa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azurecoreintegrationg","name":"azurecoreintegrationg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T08:14:47.6537454Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T08:14:47.6537454Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T08:14:47.5756186Z","primaryEndpoints":{"blob":"https://azurecoreintegrationg.blob.core.windows.net/","queue":"https://azurecoreintegrationg.queue.core.windows.net/","table":"https://azurecoreintegrationg.table.core.windows.net/","file":"https://azurecoreintegrationg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://azurecoreintegrationg-secondary.blob.core.windows.net/","queue":"https://azurecoreintegrationg-secondary.queue.core.windows.net/","table":"https://azurecoreintegrationg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxoe2qtcqlnxonqpub522jgmpzgeegwhowl2qo6xqgfwtqcd3jzicz5yraawi/providers/Microsoft.Storage/storageAccounts/clitest6yrafi3cntx2cngw3","name":"clitest6yrafi3cntx2cngw3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-06T14:00:05.4412024Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-06T14:00:05.4412024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:00:05.3786989Z","primaryEndpoints":{"blob":"https://clitest6yrafi3cntx2cngw3.blob.core.windows.net/","queue":"https://clitest6yrafi3cntx2cngw3.queue.core.windows.net/","table":"https://clitest6yrafi3cntx2cngw3.table.core.windows.net/","file":"https://clitest6yrafi3cntx2cngw3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxn5n2vkeyewiwob4e7e6nqiblkvvgc5qorevejhsntblvdlc2t373rrvy45p/providers/Microsoft.Storage/storageAccounts/clitest75g6r5uwkj7ker7wu","name":"clitest75g6r5uwkj7ker7wu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T06:35:53.9029562Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T06:35:53.9029562Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:35:53.8248647Z","primaryEndpoints":{"blob":"https://clitest75g6r5uwkj7ker7wu.blob.core.windows.net/","queue":"https://clitest75g6r5uwkj7ker7wu.queue.core.windows.net/","table":"https://clitest75g6r5uwkj7ker7wu.table.core.windows.net/","file":"https://clitest75g6r5uwkj7ker7wu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox5gpbe2knrizxsitmvje3fbdl44tf6cvpfqbpvsyicxmupsbyhmlcrg4wesk/providers/Microsoft.Storage/storageAccounts/clitest7b5n3o4aahl5rafju","name":"clitest7b5n3o4aahl5rafju","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T08:27:23.1140038Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T08:27:23.1140038Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:27:23.0514944Z","primaryEndpoints":{"blob":"https://clitest7b5n3o4aahl5rafju.blob.core.windows.net/","queue":"https://clitest7b5n3o4aahl5rafju.queue.core.windows.net/","table":"https://clitest7b5n3o4aahl5rafju.table.core.windows.net/","file":"https://clitest7b5n3o4aahl5rafju.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxlekg7y4dtg2pnsaueisdkyqi5mnvmlwxto2cpu3kv7snll4uc37q2rm4wme/providers/Microsoft.Storage/storageAccounts/clitestcu3wv45lektdc3whs","name":"clitestcu3wv45lektdc3whs","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T08:35:04.7531702Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T08:35:04.7531702Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:35:04.6750427Z","primaryEndpoints":{"blob":"https://clitestcu3wv45lektdc3whs.blob.core.windows.net/","queue":"https://clitestcu3wv45lektdc3whs.queue.core.windows.net/","table":"https://clitestcu3wv45lektdc3whs.table.core.windows.net/","file":"https://clitestcu3wv45lektdc3whs.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxeg3csudujzrh2zcvbjytg6gvlkp6sjfcozveffblaqhrzhsslvpr54lg7n2/providers/Microsoft.Storage/storageAccounts/clitestgdfhjpgc2wgbrddlq","name":"clitestgdfhjpgc2wgbrddlq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T06:28:55.9105364Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T06:28:55.9105364Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:28:55.8480330Z","primaryEndpoints":{"blob":"https://clitestgdfhjpgc2wgbrddlq.blob.core.windows.net/","queue":"https://clitestgdfhjpgc2wgbrddlq.queue.core.windows.net/","table":"https://clitestgdfhjpgc2wgbrddlq.table.core.windows.net/","file":"https://clitestgdfhjpgc2wgbrddlq.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxoe2qtcqlnxonqpub522jgmpzgeegwhowl2qo6xqgfwtqcd3jzicz5yraawi/providers/Microsoft.Storage/storageAccounts/clitestl6h6fa53d2gbmohn3","name":"clitestl6h6fa53d2gbmohn3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-06T13:59:30.5816034Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-06T13:59:30.5816034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T13:59:30.5034613Z","primaryEndpoints":{"blob":"https://clitestl6h6fa53d2gbmohn3.blob.core.windows.net/","queue":"https://clitestl6h6fa53d2gbmohn3.queue.core.windows.net/","table":"https://clitestl6h6fa53d2gbmohn3.table.core.windows.net/","file":"https://clitestl6h6fa53d2gbmohn3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxfgdxtb5b3moqarfyogd7fcognbrlsihjlj3acnscrixetycujoejzzalyi3/providers/Microsoft.Storage/storageAccounts/clitestldg5uo7ika27utek4","name":"clitestldg5uo7ika27utek4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T08:59:48.7196866Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T08:59:48.7196866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:59:48.6728325Z","primaryEndpoints":{"blob":"https://clitestldg5uo7ika27utek4.blob.core.windows.net/","queue":"https://clitestldg5uo7ika27utek4.queue.core.windows.net/","table":"https://clitestldg5uo7ika27utek4.table.core.windows.net/","file":"https://clitestldg5uo7ika27utek4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox52yrfbe7molrqhwdubnr2jcijd22xsz3hgcg3btf3sza5boeklwgzzq5sfn/providers/Microsoft.Storage/storageAccounts/clitestm7nikx6sld4npo42d","name":"clitestm7nikx6sld4npo42d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-06T14:20:54.5597796Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-06T14:20:54.5597796Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:20:54.4972558Z","primaryEndpoints":{"blob":"https://clitestm7nikx6sld4npo42d.blob.core.windows.net/","queue":"https://clitestm7nikx6sld4npo42d.queue.core.windows.net/","table":"https://clitestm7nikx6sld4npo42d.table.core.windows.net/","file":"https://clitestm7nikx6sld4npo42d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxrg2slunrj5vx5aydveu66wkj6rh3ildamkumi4zojpcf6f4vastgfp4v3rw/providers/Microsoft.Storage/storageAccounts/clitestmap7c2xyjf3gsd7yg","name":"clitestmap7c2xyjf3gsd7yg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T09:10:56.7318732Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T09:10:56.7318732Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T09:10:56.6381622Z","primaryEndpoints":{"blob":"https://clitestmap7c2xyjf3gsd7yg.blob.core.windows.net/","queue":"https://clitestmap7c2xyjf3gsd7yg.queue.core.windows.net/","table":"https://clitestmap7c2xyjf3gsd7yg.table.core.windows.net/","file":"https://clitestmap7c2xyjf3gsd7yg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-28T06:22:29.4041636Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-28T06:22:29.4041636Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-28T06:22:29.3260366Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxu7woflo47pjem4rfw2djuvafywtfnprfpduospdfotkqkudaylsua3ybqpa/providers/Microsoft.Storage/storageAccounts/clitestnxsheqf5s5rcht46h","name":"clitestnxsheqf5s5rcht46h","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T06:40:27.7931436Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T06:40:27.7931436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:40:27.7305929Z","primaryEndpoints":{"blob":"https://clitestnxsheqf5s5rcht46h.blob.core.windows.net/","queue":"https://clitestnxsheqf5s5rcht46h.queue.core.windows.net/","table":"https://clitestnxsheqf5s5rcht46h.table.core.windows.net/","file":"https://clitestnxsheqf5s5rcht46h.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox52yrfbe7molrqhwdubnr2jcijd22xsz3hgcg3btf3sza5boeklwgzzq5sfn/providers/Microsoft.Storage/storageAccounts/clitestqsel4b35pkfyubvyx","name":"clitestqsel4b35pkfyubvyx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-06T14:20:08.8041709Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-06T14:20:08.8041709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:20:08.7417121Z","primaryEndpoints":{"blob":"https://clitestqsel4b35pkfyubvyx.blob.core.windows.net/","queue":"https://clitestqsel4b35pkfyubvyx.queue.core.windows.net/","table":"https://clitestqsel4b35pkfyubvyx.table.core.windows.net/","file":"https://clitestqsel4b35pkfyubvyx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxam64dpcskfsb23dkj6zbvxysimh24e3upfdsdmuxbdl2j25ckz2uz5lht5y/providers/Microsoft.Storage/storageAccounts/clitesty2xsxbbcego73beie","name":"clitesty2xsxbbcego73beie","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T05:23:45.1933083Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T05:23:45.1933083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T05:23:45.1308322Z","primaryEndpoints":{"blob":"https://clitesty2xsxbbcego73beie.blob.core.windows.net/","queue":"https://clitesty2xsxbbcego73beie.queue.core.windows.net/","table":"https://clitesty2xsxbbcego73beie.table.core.windows.net/","file":"https://clitesty2xsxbbcego73beie.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/sfsafsaf","name":"sfsafsaf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-12T10:01:37.0551963Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-12T10:01:37.0551963Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-12T10:01:36.9614761Z","primaryEndpoints":{"blob":"https://sfsafsaf.blob.core.windows.net/","queue":"https://sfsafsaf.queue.core.windows.net/","table":"https://sfsafsaf.table.core.windows.net/","file":"https://sfsafsaf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yutestdbsawestus","name":"yutestdbsawestus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-25T11:11:24.7554090Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-25T11:11:24.7554090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-25T11:11:24.6772540Z","primaryEndpoints":{"blob":"https://yutestdbsawestus.blob.core.windows.net/","queue":"https://yutestdbsawestus.queue.core.windows.net/","table":"https://yutestdbsawestus.table.core.windows.net/","file":"https://yutestdbsawestus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yutestdbsawestus-secondary.blob.core.windows.net/","queue":"https://yutestdbsawestus-secondary.queue.core.windows.net/","table":"https://yutestdbsawestus-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yutestlro","name":"yutestlro","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-28T07:50:15.1386919Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-28T07:50:15.1386919Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-28T07:50:15.0762161Z","primaryEndpoints":{"blob":"https://yutestlro.blob.core.windows.net/","queue":"https://yutestlro.queue.core.windows.net/","table":"https://yutestlro.table.core.windows.net/","file":"https://yutestlro.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yutestlro-secondary.blob.core.windows.net/","queue":"https://yutestlro-secondary.queue.core.windows.net/","table":"https://yutestlro-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/yutestsa","name":"yutestsa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-27T02:02:00.3588801Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-27T02:02:00.3588801Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-27T02:02:00.2651391Z","primaryEndpoints":{"blob":"https://yutestsa.blob.core.windows.net/","queue":"https://yutestsa.queue.core.windows.net/","table":"https://yutestsa.table.core.windows.net/","file":"https://yutestsa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yutestsa-secondary.blob.core.windows.net/","queue":"https://yutestsa-secondary.queue.core.windows.net/","table":"https://yutestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2","name":"zhoxingtest2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T03:09:41.7587583Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T03:09:41.7587583Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T03:09:41.6962163Z","primaryEndpoints":{"blob":"https://zhoxingtest2.blob.core.windows.net/","queue":"https://zhoxingtest2.queue.core.windows.net/","table":"https://zhoxingtest2.table.core.windows.net/","file":"https://zhoxingtest2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zhoxingtest2-secondary.blob.core.windows.net/","queue":"https://zhoxingtest2-secondary.queue.core.windows.net/","table":"https://zhoxingtest2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-my-standard-space-fez3hbt1bsvmr/providers/Microsoft.Storage/storageAccounts/dbstoragefez3hbt1bsvmr","name":"dbstoragefez3hbt1bsvmr","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T03:14:00.7197710Z","primaryEndpoints":{"blob":"https://dbstoragefez3hbt1bsvmr.blob.core.windows.net/","table":"https://dbstoragefez3hbt1bsvmr.table.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengws1storage296335f3c7","name":"fengws1storage296335f3c7","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-14T14:41:02.1600089Z","primaryEndpoints":{"blob":"https://fengws1storage296335f3c7.blob.core.windows.net/","queue":"https://fengws1storage296335f3c7.queue.core.windows.net/","table":"https://fengws1storage296335f3c7.table.core.windows.net/","file":"https://fengws1storage296335f3c7.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T07:15:45.7422455Z","primaryEndpoints":{"blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlvm2rg/providers/Microsoft.Storage/storageAccounts/jlvm2rgdiag","name":"jlvm2rgdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T04:41:48.6505931Z","primaryEndpoints":{"blob":"https://jlvm2rgdiag.blob.core.windows.net/","queue":"https://jlvm2rgdiag.queue.core.windows.net/","table":"https://jlvm2rgdiag.table.core.windows.net/","file":"https://jlvm2rgdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimrgdiag","name":"bimrgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T15:04:32.0706109Z","primaryEndpoints":{"blob":"https://bimrgdiag.blob.core.windows.net/","queue":"https://bimrgdiag.queue.core.windows.net/","table":"https://bimrgdiag.table.core.windows.net/","file":"https://bimrgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengclirgdiag","name":"fengclirgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-01T07:10:19.9974827Z","primaryEndpoints":{"blob":"https://fengclirgdiag.blob.core.windows.net/","queue":"https://fengclirgdiag.queue.core.windows.net/","table":"https://fengclirgdiag.table.core.windows.net/","file":"https://fengclirgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o","name":"store6472qnxl3vv5o","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"project":"Digital - Platform","env":"CI"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T08:24:34.6453999Z","primaryEndpoints":{"blob":"https://store6472qnxl3vv5o.blob.core.windows.net/","queue":"https://store6472qnxl3vv5o.queue.core.windows.net/","table":"https://store6472qnxl3vv5o.table.core.windows.net/","file":"https://store6472qnxl3vv5o.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengclitest","name":"fengclitest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-09T05:03:17.9861949Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-09T05:03:17.9861949Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T05:03:17.8924377Z","primaryEndpoints":{"blob":"https://fengclitest.blob.core.windows.net/","queue":"https://fengclitest.queue.core.windows.net/","table":"https://fengclitest.table.core.windows.net/","file":"https://fengclitest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengclitest-secondary.blob.core.windows.net/","queue":"https://fengclitest-secondary.queue.core.windows.net/","table":"https://fengclitest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8","name":"storageaccountzhoxib2a8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T06:54:03.9044955Z","primaryEndpoints":{"blob":"https://storageaccountzhoxib2a8.blob.core.windows.net/","queue":"https://storageaccountzhoxib2a8.queue.core.windows.net/","table":"https://storageaccountzhoxib2a8.table.core.windows.net/","file":"https://storageaccountzhoxib2a8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Storage/storageAccounts/zuhstorage","name":"zuhstorage","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ServiceName":"TAGVALUE"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T06:04:55.6167450Z","primaryEndpoints":{"blob":"https://zuhstorage.blob.core.windows.net/","queue":"https://zuhstorage.queue.core.windows.net/","table":"https://zuhstorage.table.core.windows.net/","file":"https://zuhstorage.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstorage-secondary.blob.core.windows.net/","queue":"https://zuhstorage-secondary.queue.core.windows.net/","table":"https://zuhstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengwsstorage28dfde17cb1","name":"fengwsstorage28dfde17cb1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T04:11:42.1857797Z","primaryEndpoints":{"blob":"https://fengwsstorage28dfde17cb1.blob.core.windows.net/","queue":"https://fengwsstorage28dfde17cb1.queue.core.windows.net/","table":"https://fengwsstorage28dfde17cb1.table.core.windows.net/","file":"https://fengwsstorage28dfde17cb1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimstorageacc","name":"bimstorageacc","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T07:20:55.1858389Z","primaryEndpoints":{"blob":"https://bimstorageacc.blob.core.windows.net/","queue":"https://bimstorageacc.queue.core.windows.net/","table":"https://bimstorageacc.table.core.windows.net/","file":"https://bimstorageacc.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://bimstorageacc-secondary.blob.core.windows.net/","queue":"https://bimstorageacc-secondary.queue.core.windows.net/","table":"https://bimstorageacc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/sfsfsfsssf","name":"sfsfsfsssf","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-05T07:16:53.7141799Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-05T07:16:53.7141799Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T07:16:53.6829148Z","primaryEndpoints":{"blob":"https://sfsfsfsssf.blob.core.windows.net/","queue":"https://sfsfsfsssf.queue.core.windows.net/","table":"https://sfsfsfsssf.table.core.windows.net/","file":"https://sfsfsfsssf.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/stststeset","name":"stststeset","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-05T07:13:11.0482184Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-05T07:13:11.0482184Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-05T07:13:10.9856962Z","primaryEndpoints":{"blob":"https://stststeset.blob.core.windows.net/","queue":"https://stststeset.queue.core.windows.net/","table":"https://stststeset.table.core.windows.net/","file":"https://stststeset.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yusawcu","name":"yusawcu","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-26T09:39:00.0292799Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-26T09:39:00.0292799Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-26T09:38:59.9667703Z","primaryEndpoints":{"blob":"https://yusawcu.blob.core.windows.net/","queue":"https://yusawcu.queue.core.windows.net/","table":"https://yusawcu.table.core.windows.net/","file":"https://yusawcu.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yusawcu-secondary.blob.core.windows.net/","queue":"https://yusawcu-secondary.queue.core.windows.net/","table":"https://yusawcu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhadls","name":"zuhadls","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-20T03:10:14.5178215Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-20T03:10:14.5178215Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-20T03:10:14.4709025Z","primaryEndpoints":{"blob":"https://zuhadls.blob.core.windows.net/","queue":"https://zuhadls.queue.core.windows.net/","table":"https://zuhadls.table.core.windows.net/","file":"https://zuhadls.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhadls-secondary.blob.core.windows.net/","queue":"https://zuhadls-secondary.queue.core.windows.net/","table":"https://zuhadls-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"1b643393-f35b-408e-b50c-2fbef882d353","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhlrs","name":"zuhlrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-18T01:57:52.8994530Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-18T01:57:52.8994530Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-18T01:57:52.8369202Z","primaryEndpoints":{"blob":"https://zuhlrs.blob.core.windows.net/","queue":"https://zuhlrs.queue.core.windows.net/","table":"https://zuhlrs.table.core.windows.net/","file":"https://zuhlrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhors","name":"zuhors","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-23T09:37:42.7490690Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-23T09:37:42.7490690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-23T09:37:42.7022132Z","primaryEndpoints":{"blob":"https://zuhors.blob.core.windows.net/","queue":"https://zuhors.queue.core.windows.net/","table":"https://zuhors.table.core.windows.net/","file":"https://zuhors.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhors-secondary.blob.core.windows.net/","queue":"https://zuhors-secondary.queue.core.windows.net/","table":"https://zuhors-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/aprilpnpbugbash","name":"aprilpnpbugbash","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T01:56:00.5610388Z","primaryEndpoints":{"dfs":"https://aprilpnpbugbash.dfs.core.windows.net/","web":"https://aprilpnpbugbash.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash.blob.core.windows.net/","queue":"https://aprilpnpbugbash.queue.core.windows.net/","table":"https://aprilpnpbugbash.table.core.windows.net/","file":"https://aprilpnpbugbash.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aprilpnpbugbash-secondary.dfs.core.windows.net/","web":"https://aprilpnpbugbash-secondary.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash-secondary.blob.core.windows.net/","queue":"https://aprilpnpbugbash-secondary.queue.core.windows.net/","table":"https://aprilpnpbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus01","name":"csharpiotuapeastus01","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T21:49:04.0979858Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus01.blob.core.windows.net/","queue":"https://csharpiotuapeastus01.queue.core.windows.net/","table":"https://csharpiotuapeastus01.table.core.windows.net/","file":"https://csharpiotuapeastus01.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag172","name":"mgtlabdiag172","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T00:56:53.3999654Z","primaryEndpoints":{"blob":"https://mgtlabdiag172.blob.core.windows.net/","queue":"https://mgtlabdiag172.queue.core.windows.net/","table":"https://mgtlabdiag172.table.core.windows.net/","file":"https://mgtlabdiag172.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Storage/storageAccounts/sqlimagestore","name":"sqlimagestore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T15:29:06.0354793Z","primaryEndpoints":{"dfs":"https://sqlimagestore.dfs.core.windows.net/","web":"https://sqlimagestore.z13.web.core.windows.net/","blob":"https://sqlimagestore.blob.core.windows.net/","queue":"https://sqlimagestore.queue.core.windows.net/","table":"https://sqlimagestore.table.core.windows.net/","file":"https://sqlimagestore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sqlimagestore-secondary.dfs.core.windows.net/","web":"https://sqlimagestore-secondary.z13.web.core.windows.net/","blob":"https://sqlimagestore-secondary.blob.core.windows.net/","queue":"https://sqlimagestore-secondary.queue.core.windows.net/","table":"https://sqlimagestore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/zadixon","name":"zadixon","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-06T00:29:47.9301744Z","primaryEndpoints":{"dfs":"https://zadixon.dfs.core.windows.net/","web":"https://zadixon.z13.web.core.windows.net/","blob":"https://zadixon.blob.core.windows.net/","queue":"https://zadixon.queue.core.windows.net/","table":"https://zadixon.table.core.windows.net/","file":"https://zadixon.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zadixon-secondary.dfs.core.windows.net/","web":"https://zadixon-secondary.z13.web.core.windows.net/","blob":"https://zadixon-secondary.blob.core.windows.net/","queue":"https://zadixon-secondary.queue.core.windows.net/","table":"https://zadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcrg982788/providers/Microsoft.Storage/storageAccounts/affanbc8902","name":"affanbc8902","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-30T19:24:20.1876978Z","primaryEndpoints":{"blob":"https://affanbc8902.blob.core.windows.net/","queue":"https://affanbc8902.queue.core.windows.net/","table":"https://affanbc8902.table.core.windows.net/","file":"https://affanbc8902.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-14T17:44:15.7621281Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-14T17:44:15.7621281Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-14T17:44:15.6214738Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000801b6df4","name":"cs410030000801b6df4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T19:06:51.2300069Z","primaryEndpoints":{"dfs":"https://cs410030000801b6df4.dfs.core.windows.net/","web":"https://cs410030000801b6df4.z22.web.core.windows.net/","blob":"https://cs410030000801b6df4.blob.core.windows.net/","queue":"https://cs410030000801b6df4.queue.core.windows.net/","table":"https://cs410030000801b6df4.table.core.windows.net/","file":"https://cs410030000801b6df4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cswestus1003bffda5eca634","name":"cswestus1003bffda5eca634","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T01:37:40.4375181Z","primaryEndpoints":{"dfs":"https://cswestus1003bffda5eca634.dfs.core.windows.net/","web":"https://cswestus1003bffda5eca634.z22.web.core.windows.net/","blob":"https://cswestus1003bffda5eca634.blob.core.windows.net/","queue":"https://cswestus1003bffda5eca634.queue.core.windows.net/","table":"https://cswestus1003bffda5eca634.table.core.windows.net/","file":"https://cswestus1003bffda5eca634.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_c_westus_c_westus/providers/Microsoft.Storage/storageAccounts/f9c418a6510b611ea9b85ae","name":"f9c418a6510b611ea9b85ae","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created-by":"azure"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-27T01:38:30.9156217Z","primaryEndpoints":{"dfs":"https://f9c418a6510b611ea9b85ae.dfs.core.windows.net/","web":"https://f9c418a6510b611ea9b85ae.z22.web.core.windows.net/","blob":"https://f9c418a6510b611ea9b85ae.blob.core.windows.net/","queue":"https://f9c418a6510b611ea9b85ae.queue.core.windows.net/","table":"https://f9c418a6510b611ea9b85ae.table.core.windows.net/","file":"https://f9c418a6510b611ea9b85ae.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-talks-rg/providers/Microsoft.Storage/storageAccounts/gwv2overview","name":"gwv2overview","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-18T19:45:27.2337945Z","primaryEndpoints":{"dfs":"https://gwv2overview.dfs.core.windows.net/","web":"https://gwv2overview.z22.web.core.windows.net/","blob":"https://gwv2overview.blob.core.windows.net/","queue":"https://gwv2overview.queue.core.windows.net/","table":"https://gwv2overview.table.core.windows.net/","file":"https://gwv2overview.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestadministrator","name":"iothubtestadministrator","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-04T01:18:18.5399619Z","primaryEndpoints":{"blob":"https://iothubtestadministrator.blob.core.windows.net/","queue":"https://iothubtestadministrator.queue.core.windows.net/","table":"https://iothubtestadministrator.table.core.windows.net/","file":"https://iothubtestadministrator.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestadministrator-secondary.blob.core.windows.net/","queue":"https://iothubtestadministrator-secondary.queue.core.windows.net/","table":"https://iothubtestadministrator-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen10","name":"iothubtestagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T10:05:13.4246717Z","primaryEndpoints":{"blob":"https://iothubtestagen10.blob.core.windows.net/","queue":"https://iothubtestagen10.queue.core.windows.net/","table":"https://iothubtestagen10.table.core.windows.net/","file":"https://iothubtestagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestagen10-secondary.queue.core.windows.net/","table":"https://iothubtestagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen11","name":"iothubtestagen11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T02:23:10.5102160Z","primaryEndpoints":{"blob":"https://iothubtestagen11.blob.core.windows.net/","queue":"https://iothubtestagen11.queue.core.windows.net/","table":"https://iothubtestagen11.table.core.windows.net/","file":"https://iothubtestagen11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen11-secondary.blob.core.windows.net/","queue":"https://iothubtestagen11-secondary.queue.core.windows.net/","table":"https://iothubtestagen11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen12","name":"iothubtestagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T07:09:07.0627024Z","primaryEndpoints":{"blob":"https://iothubtestagen12.blob.core.windows.net/","queue":"https://iothubtestagen12.queue.core.windows.net/","table":"https://iothubtestagen12.table.core.windows.net/","file":"https://iothubtestagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestagen12-secondary.queue.core.windows.net/","table":"https://iothubtestagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen13","name":"iothubtestagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T22:59:14.9381300Z","primaryEndpoints":{"blob":"https://iothubtestagen13.blob.core.windows.net/","queue":"https://iothubtestagen13.queue.core.windows.net/","table":"https://iothubtestagen13.table.core.windows.net/","file":"https://iothubtestagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestagen13-secondary.queue.core.windows.net/","table":"https://iothubtestagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen14","name":"iothubtestagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T03:17:58.2833024Z","primaryEndpoints":{"blob":"https://iothubtestagen14.blob.core.windows.net/","queue":"https://iothubtestagen14.queue.core.windows.net/","table":"https://iothubtestagen14.table.core.windows.net/","file":"https://iothubtestagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestagen14-secondary.queue.core.windows.net/","table":"https://iothubtestagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen15","name":"iothubtestagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-23T23:31:45.2765000Z","primaryEndpoints":{"blob":"https://iothubtestagen15.blob.core.windows.net/","queue":"https://iothubtestagen15.queue.core.windows.net/","table":"https://iothubtestagen15.table.core.windows.net/","file":"https://iothubtestagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestagen15-secondary.queue.core.windows.net/","table":"https://iothubtestagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent3","name":"iothubtestagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T12:35:10.5203999Z","primaryEndpoints":{"blob":"https://iothubtestagent3.blob.core.windows.net/","queue":"https://iothubtestagent3.queue.core.windows.net/","table":"https://iothubtestagent3.table.core.windows.net/","file":"https://iothubtestagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestagent3-secondary.queue.core.windows.net/","table":"https://iothubtestagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent4","name":"iothubtestagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:17:54.1226653Z","primaryEndpoints":{"blob":"https://iothubtestagent4.blob.core.windows.net/","queue":"https://iothubtestagent4.queue.core.windows.net/","table":"https://iothubtestagent4.table.core.windows.net/","file":"https://iothubtestagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestagent4-secondary.queue.core.windows.net/","table":"https://iothubtestagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent5","name":"iothubtestagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T18:49:31.3039985Z","primaryEndpoints":{"blob":"https://iothubtestagent5.blob.core.windows.net/","queue":"https://iothubtestagent5.queue.core.windows.net/","table":"https://iothubtestagent5.table.core.windows.net/","file":"https://iothubtestagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestagent5-secondary.queue.core.windows.net/","table":"https://iothubtestagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent6","name":"iothubtestagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T20:48:18.6972003Z","primaryEndpoints":{"blob":"https://iothubtestagent6.blob.core.windows.net/","queue":"https://iothubtestagent6.queue.core.windows.net/","table":"https://iothubtestagent6.table.core.windows.net/","file":"https://iothubtestagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestagent6-secondary.queue.core.windows.net/","table":"https://iothubtestagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent7","name":"iothubtestagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T18:13:17.5284420Z","primaryEndpoints":{"blob":"https://iothubtestagent7.blob.core.windows.net/","queue":"https://iothubtestagent7.queue.core.windows.net/","table":"https://iothubtestagent7.table.core.windows.net/","file":"https://iothubtestagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestagent7-secondary.queue.core.windows.net/","table":"https://iothubtestagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent8","name":"iothubtestagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T05:50:45.0235433Z","primaryEndpoints":{"blob":"https://iothubtestagent8.blob.core.windows.net/","queue":"https://iothubtestagent8.queue.core.windows.net/","table":"https://iothubtestagent8.table.core.windows.net/","file":"https://iothubtestagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestagent8-secondary.queue.core.windows.net/","table":"https://iothubtestagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent9","name":"iothubtestagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T12:08:19.1985977Z","primaryEndpoints":{"blob":"https://iothubtestagent9.blob.core.windows.net/","queue":"https://iothubtestagent9.queue.core.windows.net/","table":"https://iothubtestagent9.table.core.windows.net/","file":"https://iothubtestagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestagent9-secondary.queue.core.windows.net/","table":"https://iothubtestagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestailn","name":"iothubtestailn","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T21:30:26.5327702Z","primaryEndpoints":{"blob":"https://iothubtestailn.blob.core.windows.net/","queue":"https://iothubtestailn.queue.core.windows.net/","table":"https://iothubtestailn.table.core.windows.net/","file":"https://iothubtestailn.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestailn-secondary.blob.core.windows.net/","queue":"https://iothubtestailn-secondary.queue.core.windows.net/","table":"https://iothubtestailn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestalklin","name":"iothubtestalklin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T21:44:41.0326156Z","primaryEndpoints":{"blob":"https://iothubtestalklin.blob.core.windows.net/","queue":"https://iothubtestalklin.queue.core.windows.net/","table":"https://iothubtestalklin.table.core.windows.net/","file":"https://iothubtestalklin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestalklin-secondary.blob.core.windows.net/","queue":"https://iothubtestalklin-secondary.queue.core.windows.net/","table":"https://iothubtestalklin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestancan","name":"iothubtestancan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-15T20:53:52.5245873Z","primaryEndpoints":{"blob":"https://iothubtestancan.blob.core.windows.net/","queue":"https://iothubtestancan.queue.core.windows.net/","table":"https://iothubtestancan.table.core.windows.net/","file":"https://iothubtestancan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestancan-secondary.blob.core.windows.net/","queue":"https://iothubtestancan-secondary.queue.core.windows.net/","table":"https://iothubtestancan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestankurkul","name":"iothubtestankurkul","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T18:55:33.5852523Z","primaryEndpoints":{"blob":"https://iothubtestankurkul.blob.core.windows.net/","queue":"https://iothubtestankurkul.queue.core.windows.net/","table":"https://iothubtestankurkul.table.core.windows.net/","file":"https://iothubtestankurkul.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestankurkul-secondary.blob.core.windows.net/","queue":"https://iothubtestankurkul-secondary.queue.core.windows.net/","table":"https://iothubtestankurkul-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestanways","name":"iothubtestanways","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T23:37:24.8038321Z","primaryEndpoints":{"blob":"https://iothubtestanways.blob.core.windows.net/","queue":"https://iothubtestanways.queue.core.windows.net/","table":"https://iothubtestanways.table.core.windows.net/","file":"https://iothubtestanways.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestanways-secondary.blob.core.windows.net/","queue":"https://iothubtestanways-secondary.queue.core.windows.net/","table":"https://iothubtestanways-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent0","name":"iothubtestarmagent0","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:25:07.6231752Z","primaryEndpoints":{"blob":"https://iothubtestarmagent0.blob.core.windows.net/","queue":"https://iothubtestarmagent0.queue.core.windows.net/","table":"https://iothubtestarmagent0.table.core.windows.net/","file":"https://iothubtestarmagent0.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent0-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent0-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent0-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent1","name":"iothubtestarmagent1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:06.1819274Z","primaryEndpoints":{"blob":"https://iothubtestarmagent1.blob.core.windows.net/","queue":"https://iothubtestarmagent1.queue.core.windows.net/","table":"https://iothubtestarmagent1.table.core.windows.net/","file":"https://iothubtestarmagent1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent1-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent1-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent10","name":"iothubtestarmagent10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-04T00:00:33.5483450Z","primaryEndpoints":{"blob":"https://iothubtestarmagent10.blob.core.windows.net/","queue":"https://iothubtestarmagent10.queue.core.windows.net/","table":"https://iothubtestarmagent10.table.core.windows.net/","file":"https://iothubtestarmagent10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent10-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent10-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent11","name":"iothubtestarmagent11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:30:52.2440378Z","primaryEndpoints":{"blob":"https://iothubtestarmagent11.blob.core.windows.net/","queue":"https://iothubtestarmagent11.queue.core.windows.net/","table":"https://iothubtestarmagent11.table.core.windows.net/","file":"https://iothubtestarmagent11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent11-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent11-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent12","name":"iothubtestarmagent12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:32.3588053Z","primaryEndpoints":{"blob":"https://iothubtestarmagent12.blob.core.windows.net/","queue":"https://iothubtestarmagent12.queue.core.windows.net/","table":"https://iothubtestarmagent12.table.core.windows.net/","file":"https://iothubtestarmagent12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent12-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent12-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent13","name":"iothubtestarmagent13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:27.6550375Z","primaryEndpoints":{"blob":"https://iothubtestarmagent13.blob.core.windows.net/","queue":"https://iothubtestarmagent13.queue.core.windows.net/","table":"https://iothubtestarmagent13.table.core.windows.net/","file":"https://iothubtestarmagent13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent13-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent13-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent14","name":"iothubtestarmagent14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:42:37.3561862Z","primaryEndpoints":{"blob":"https://iothubtestarmagent14.blob.core.windows.net/","queue":"https://iothubtestarmagent14.queue.core.windows.net/","table":"https://iothubtestarmagent14.table.core.windows.net/","file":"https://iothubtestarmagent14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent14-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent14-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent15","name":"iothubtestarmagent15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:43:42.1672649Z","primaryEndpoints":{"blob":"https://iothubtestarmagent15.blob.core.windows.net/","queue":"https://iothubtestarmagent15.queue.core.windows.net/","table":"https://iothubtestarmagent15.table.core.windows.net/","file":"https://iothubtestarmagent15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent15-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent15-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent16","name":"iothubtestarmagent16","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:41:06.9895448Z","primaryEndpoints":{"blob":"https://iothubtestarmagent16.blob.core.windows.net/","queue":"https://iothubtestarmagent16.queue.core.windows.net/","table":"https://iothubtestarmagent16.table.core.windows.net/","file":"https://iothubtestarmagent16.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent16-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent16-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent2","name":"iothubtestarmagent2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:14.4324743Z","primaryEndpoints":{"blob":"https://iothubtestarmagent2.blob.core.windows.net/","queue":"https://iothubtestarmagent2.queue.core.windows.net/","table":"https://iothubtestarmagent2.table.core.windows.net/","file":"https://iothubtestarmagent2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent2-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent2-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent3","name":"iothubtestarmagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:05:38.8293155Z","primaryEndpoints":{"blob":"https://iothubtestarmagent3.blob.core.windows.net/","queue":"https://iothubtestarmagent3.queue.core.windows.net/","table":"https://iothubtestarmagent3.table.core.windows.net/","file":"https://iothubtestarmagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent3-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent4","name":"iothubtestarmagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T19:43:06.4252573Z","primaryEndpoints":{"blob":"https://iothubtestarmagent4.blob.core.windows.net/","queue":"https://iothubtestarmagent4.queue.core.windows.net/","table":"https://iothubtestarmagent4.table.core.windows.net/","file":"https://iothubtestarmagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent4-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent5","name":"iothubtestarmagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T04:07:15.4659852Z","primaryEndpoints":{"blob":"https://iothubtestarmagent5.blob.core.windows.net/","queue":"https://iothubtestarmagent5.queue.core.windows.net/","table":"https://iothubtestarmagent5.table.core.windows.net/","file":"https://iothubtestarmagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent5-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent6","name":"iothubtestarmagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T23:05:24.2026638Z","primaryEndpoints":{"blob":"https://iothubtestarmagent6.blob.core.windows.net/","queue":"https://iothubtestarmagent6.queue.core.windows.net/","table":"https://iothubtestarmagent6.table.core.windows.net/","file":"https://iothubtestarmagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent6-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent7","name":"iothubtestarmagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T04:19:55.0567985Z","primaryEndpoints":{"blob":"https://iothubtestarmagent7.blob.core.windows.net/","queue":"https://iothubtestarmagent7.queue.core.windows.net/","table":"https://iothubtestarmagent7.table.core.windows.net/","file":"https://iothubtestarmagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent7-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent8","name":"iothubtestarmagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:51:51.1994925Z","primaryEndpoints":{"blob":"https://iothubtestarmagent8.blob.core.windows.net/","queue":"https://iothubtestarmagent8.queue.core.windows.net/","table":"https://iothubtestarmagent8.table.core.windows.net/","file":"https://iothubtestarmagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent8-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent9","name":"iothubtestarmagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:46:30.6691686Z","primaryEndpoints":{"blob":"https://iothubtestarmagent9.blob.core.windows.net/","queue":"https://iothubtestarmagent9.queue.core.windows.net/","table":"https://iothubtestarmagent9.table.core.windows.net/","file":"https://iothubtestarmagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent9-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestartr","name":"iothubtestartr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T18:36:14.8722411Z","primaryEndpoints":{"blob":"https://iothubtestartr.blob.core.windows.net/","queue":"https://iothubtestartr.queue.core.windows.net/","table":"https://iothubtestartr.table.core.windows.net/","file":"https://iothubtestartr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestartr-secondary.blob.core.windows.net/","queue":"https://iothubtestartr-secondary.queue.core.windows.net/","table":"https://iothubtestartr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavich","name":"iothubtestavich","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-04T00:34:14.7642048Z","primaryEndpoints":{"blob":"https://iothubtestavich.blob.core.windows.net/","queue":"https://iothubtestavich.queue.core.windows.net/","table":"https://iothubtestavich.table.core.windows.net/","file":"https://iothubtestavich.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavich-secondary.blob.core.windows.net/","queue":"https://iothubtestavich-secondary.queue.core.windows.net/","table":"https://iothubtestavich-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavran","name":"iothubtestavran","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T07:08:17.6023949Z","primaryEndpoints":{"blob":"https://iothubtestavran.blob.core.windows.net/","queue":"https://iothubtestavran.queue.core.windows.net/","table":"https://iothubtestavran.table.core.windows.net/","file":"https://iothubtestavran.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavran-secondary.blob.core.windows.net/","queue":"https://iothubtestavran-secondary.queue.core.windows.net/","table":"https://iothubtestavran-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestaziotgit","name":"iothubtestaziotgit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-26T08:20:05.9498662Z","primaryEndpoints":{"blob":"https://iothubtestaziotgit.blob.core.windows.net/","queue":"https://iothubtestaziotgit.queue.core.windows.net/","table":"https://iothubtestaziotgit.table.core.windows.net/","file":"https://iothubtestaziotgit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestaziotgit-secondary.blob.core.windows.net/","queue":"https://iothubtestaziotgit-secondary.queue.core.windows.net/","table":"https://iothubtestaziotgit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestchschill","name":"iothubtestchschill","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T19:28:33.3933505Z","primaryEndpoints":{"blob":"https://iothubtestchschill.blob.core.windows.net/","queue":"https://iothubtestchschill.queue.core.windows.net/","table":"https://iothubtestchschill.table.core.windows.net/","file":"https://iothubtestchschill.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestchschill-secondary.blob.core.windows.net/","queue":"https://iothubtestchschill-secondary.queue.core.windows.net/","table":"https://iothubtestchschill-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdemuniap","name":"iothubtestdemuniap","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T18:05:33.8976512Z","primaryEndpoints":{"blob":"https://iothubtestdemuniap.blob.core.windows.net/","queue":"https://iothubtestdemuniap.queue.core.windows.net/","table":"https://iothubtestdemuniap.table.core.windows.net/","file":"https://iothubtestdemuniap.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdemuniap-secondary.blob.core.windows.net/","queue":"https://iothubtestdemuniap-secondary.queue.core.windows.net/","table":"https://iothubtestdemuniap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdmpypin","name":"iothubtestdmpypin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T02:06:07.6557833Z","primaryEndpoints":{"blob":"https://iothubtestdmpypin.blob.core.windows.net/","queue":"https://iothubtestdmpypin.queue.core.windows.net/","table":"https://iothubtestdmpypin.table.core.windows.net/","file":"https://iothubtestdmpypin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdmpypin-secondary.blob.core.windows.net/","queue":"https://iothubtestdmpypin-secondary.queue.core.windows.net/","table":"https://iothubtestdmpypin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesterpogas","name":"iothubtesterpogas","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:42:35.6790670Z","primaryEndpoints":{"blob":"https://iothubtesterpogas.blob.core.windows.net/","queue":"https://iothubtesterpogas.queue.core.windows.net/","table":"https://iothubtesterpogas.table.core.windows.net/","file":"https://iothubtesterpogas.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesterpogas-secondary.blob.core.windows.net/","queue":"https://iothubtesterpogas-secondary.queue.core.windows.net/","table":"https://iothubtesterpogas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestevansim","name":"iothubtestevansim","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T19:23:28.4781666Z","primaryEndpoints":{"blob":"https://iothubtestevansim.blob.core.windows.net/","queue":"https://iothubtestevansim.queue.core.windows.net/","table":"https://iothubtestevansim.table.core.windows.net/","file":"https://iothubtestevansim.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestevansim-secondary.blob.core.windows.net/","queue":"https://iothubtestevansim-secondary.queue.core.windows.net/","table":"https://iothubtestevansim-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestfilipst","name":"iothubtestfilipst","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T18:49:48.9517375Z","primaryEndpoints":{"blob":"https://iothubtestfilipst.blob.core.windows.net/","queue":"https://iothubtestfilipst.queue.core.windows.net/","table":"https://iothubtestfilipst.table.core.windows.net/","file":"https://iothubtestfilipst.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestfilipst-secondary.blob.core.windows.net/","queue":"https://iothubtestfilipst-secondary.queue.core.windows.net/","table":"https://iothubtestfilipst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesthaavula","name":"iothubtesthaavula","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T19:46:15.8018780Z","primaryEndpoints":{"blob":"https://iothubtesthaavula.blob.core.windows.net/","queue":"https://iothubtesthaavula.queue.core.windows.net/","table":"https://iothubtesthaavula.table.core.windows.net/","file":"https://iothubtesthaavula.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesthaavula-secondary.blob.core.windows.net/","queue":"https://iothubtesthaavula-secondary.queue.core.windows.net/","table":"https://iothubtesthaavula-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestiotadmin","name":"iothubtestiotadmin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T06:15:38.7880310Z","primaryEndpoints":{"blob":"https://iothubtestiotadmin.blob.core.windows.net/","queue":"https://iothubtestiotadmin.queue.core.windows.net/","table":"https://iothubtestiotadmin.table.core.windows.net/","file":"https://iothubtestiotadmin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestiotadmin-secondary.blob.core.windows.net/","queue":"https://iothubtestiotadmin-secondary.queue.core.windows.net/","table":"https://iothubtestiotadmin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestisyama","name":"iothubtestisyama","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T20:16:57.8635776Z","primaryEndpoints":{"blob":"https://iothubtestisyama.blob.core.windows.net/","queue":"https://iothubtestisyama.queue.core.windows.net/","table":"https://iothubtestisyama.table.core.windows.net/","file":"https://iothubtestisyama.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestisyama-secondary.blob.core.windows.net/","queue":"https://iothubtestisyama-secondary.queue.core.windows.net/","table":"https://iothubtestisyama-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjacoimba","name":"iothubtestjacoimba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-03T13:35:42.2046780Z","primaryEndpoints":{"blob":"https://iothubtestjacoimba.blob.core.windows.net/","queue":"https://iothubtestjacoimba.queue.core.windows.net/","table":"https://iothubtestjacoimba.table.core.windows.net/","file":"https://iothubtestjacoimba.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjacoimba-secondary.blob.core.windows.net/","queue":"https://iothubtestjacoimba-secondary.queue.core.windows.net/","table":"https://iothubtestjacoimba-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjichang","name":"iothubtestjichang","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T20:48:51.2697659Z","primaryEndpoints":{"blob":"https://iothubtestjichang.blob.core.windows.net/","queue":"https://iothubtestjichang.queue.core.windows.net/","table":"https://iothubtestjichang.table.core.windows.net/","file":"https://iothubtestjichang.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjichang-secondary.blob.core.windows.net/","queue":"https://iothubtestjichang-secondary.queue.core.windows.net/","table":"https://iothubtestjichang-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjitenkos","name":"iothubtestjitenkos","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-21T20:10:24.8341568Z","primaryEndpoints":{"blob":"https://iothubtestjitenkos.blob.core.windows.net/","queue":"https://iothubtestjitenkos.queue.core.windows.net/","table":"https://iothubtestjitenkos.table.core.windows.net/","file":"https://iothubtestjitenkos.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjitenkos-secondary.blob.core.windows.net/","queue":"https://iothubtestjitenkos-secondary.queue.core.windows.net/","table":"https://iothubtestjitenkos-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjucarpio","name":"iothubtestjucarpio","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-20T21:23:53.2553997Z","primaryEndpoints":{"blob":"https://iothubtestjucarpio.blob.core.windows.net/","queue":"https://iothubtestjucarpio.queue.core.windows.net/","table":"https://iothubtestjucarpio.table.core.windows.net/","file":"https://iothubtestjucarpio.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjucarpio-secondary.blob.core.windows.net/","queue":"https://iothubtestjucarpio-secondary.queue.core.windows.net/","table":"https://iothubtestjucarpio-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkaagarw","name":"iothubtestkaagarw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-02T22:17:52.7382855Z","primaryEndpoints":{"blob":"https://iothubtestkaagarw.blob.core.windows.net/","queue":"https://iothubtestkaagarw.queue.core.windows.net/","table":"https://iothubtestkaagarw.table.core.windows.net/","file":"https://iothubtestkaagarw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkaagarw-secondary.blob.core.windows.net/","queue":"https://iothubtestkaagarw-secondary.queue.core.windows.net/","table":"https://iothubtestkaagarw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkanoda","name":"iothubtestkanoda","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T20:18:58.8099190Z","primaryEndpoints":{"blob":"https://iothubtestkanoda.blob.core.windows.net/","queue":"https://iothubtestkanoda.queue.core.windows.net/","table":"https://iothubtestkanoda.table.core.windows.net/","file":"https://iothubtestkanoda.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkanoda-secondary.blob.core.windows.net/","queue":"https://iothubtestkanoda-secondary.queue.core.windows.net/","table":"https://iothubtestkanoda-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlinsqi","name":"iothubtestlinsqi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T06:56:19.5684188Z","primaryEndpoints":{"blob":"https://iothubtestlinsqi.blob.core.windows.net/","queue":"https://iothubtestlinsqi.queue.core.windows.net/","table":"https://iothubtestlinsqi.table.core.windows.net/","file":"https://iothubtestlinsqi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlinsqi-secondary.blob.core.windows.net/","queue":"https://iothubtestlinsqi-secondary.queue.core.windows.net/","table":"https://iothubtestlinsqi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlygasch","name":"iothubtestlygasch","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T22:53:48.2371055Z","primaryEndpoints":{"blob":"https://iothubtestlygasch.blob.core.windows.net/","queue":"https://iothubtestlygasch.queue.core.windows.net/","table":"https://iothubtestlygasch.table.core.windows.net/","file":"https://iothubtestlygasch.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlygasch-secondary.blob.core.windows.net/","queue":"https://iothubtestlygasch-secondary.queue.core.windows.net/","table":"https://iothubtestlygasch-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaazer","name":"iothubtestmaazer","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T20:04:50.5225085Z","primaryEndpoints":{"blob":"https://iothubtestmaazer.blob.core.windows.net/","queue":"https://iothubtestmaazer.queue.core.windows.net/","table":"https://iothubtestmaazer.table.core.windows.net/","file":"https://iothubtestmaazer.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaazer-secondary.blob.core.windows.net/","queue":"https://iothubtestmaazer-secondary.queue.core.windows.net/","table":"https://iothubtestmaazer-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaga","name":"iothubtestmaga","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T22:18:11.6739090Z","primaryEndpoints":{"blob":"https://iothubtestmaga.blob.core.windows.net/","queue":"https://iothubtestmaga.queue.core.windows.net/","table":"https://iothubtestmaga.table.core.windows.net/","file":"https://iothubtestmaga.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaga-secondary.blob.core.windows.net/","queue":"https://iothubtestmaga-secondary.queue.core.windows.net/","table":"https://iothubtestmaga-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmatwal","name":"iothubtestmatwal","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:32:55.9700835Z","primaryEndpoints":{"blob":"https://iothubtestmatwal.blob.core.windows.net/","queue":"https://iothubtestmatwal.queue.core.windows.net/","table":"https://iothubtestmatwal.table.core.windows.net/","file":"https://iothubtestmatwal.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmatwal-secondary.blob.core.windows.net/","queue":"https://iothubtestmatwal-secondary.queue.core.windows.net/","table":"https://iothubtestmatwal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestminune","name":"iothubtestminune","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T00:17:59.9927105Z","primaryEndpoints":{"blob":"https://iothubtestminune.blob.core.windows.net/","queue":"https://iothubtestminune.queue.core.windows.net/","table":"https://iothubtestminune.table.core.windows.net/","file":"https://iothubtestminune.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestminune-secondary.blob.core.windows.net/","queue":"https://iothubtestminune-secondary.queue.core.windows.net/","table":"https://iothubtestminune-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmugunm","name":"iothubtestmugunm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T18:43:40.8831823Z","primaryEndpoints":{"blob":"https://iothubtestmugunm.blob.core.windows.net/","queue":"https://iothubtestmugunm.queue.core.windows.net/","table":"https://iothubtestmugunm.table.core.windows.net/","file":"https://iothubtestmugunm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmugunm-secondary.blob.core.windows.net/","queue":"https://iothubtestmugunm-secondary.queue.core.windows.net/","table":"https://iothubtestmugunm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnadeshpa","name":"iothubtestnadeshpa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-26T23:12:51.2252415Z","primaryEndpoints":{"blob":"https://iothubtestnadeshpa.blob.core.windows.net/","queue":"https://iothubtestnadeshpa.queue.core.windows.net/","table":"https://iothubtestnadeshpa.table.core.windows.net/","file":"https://iothubtestnadeshpa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnadeshpa-secondary.blob.core.windows.net/","queue":"https://iothubtestnadeshpa-secondary.queue.core.windows.net/","table":"https://iothubtestnadeshpa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnebanfic","name":"iothubtestnebanfic","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:56:11.3814714Z","primaryEndpoints":{"blob":"https://iothubtestnebanfic.blob.core.windows.net/","queue":"https://iothubtestnebanfic.queue.core.windows.net/","table":"https://iothubtestnebanfic.table.core.windows.net/","file":"https://iothubtestnebanfic.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnebanfic-secondary.blob.core.windows.net/","queue":"https://iothubtestnebanfic-secondary.queue.core.windows.net/","table":"https://iothubtestnebanfic-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnimengan","name":"iothubtestnimengan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-01T14:31:46.6447731Z","primaryEndpoints":{"blob":"https://iothubtestnimengan.blob.core.windows.net/","queue":"https://iothubtestnimengan.queue.core.windows.net/","table":"https://iothubtestnimengan.table.core.windows.net/","file":"https://iothubtestnimengan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnimengan-secondary.blob.core.windows.net/","queue":"https://iothubtestnimengan-secondary.queue.core.windows.net/","table":"https://iothubtestnimengan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnivithla","name":"iothubtestnivithla","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T02:25:41.1262385Z","primaryEndpoints":{"blob":"https://iothubtestnivithla.blob.core.windows.net/","queue":"https://iothubtestnivithla.queue.core.windows.net/","table":"https://iothubtestnivithla.table.core.windows.net/","file":"https://iothubtestnivithla.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnivithla-secondary.blob.core.windows.net/","queue":"https://iothubtestnivithla-secondary.queue.core.windows.net/","table":"https://iothubtestnivithla-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprashmo","name":"iothubtestprashmo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-10T21:44:41.8251549Z","primaryEndpoints":{"blob":"https://iothubtestprashmo.blob.core.windows.net/","queue":"https://iothubtestprashmo.queue.core.windows.net/","table":"https://iothubtestprashmo.table.core.windows.net/","file":"https://iothubtestprashmo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprashmo-secondary.blob.core.windows.net/","queue":"https://iothubtestprashmo-secondary.queue.core.windows.net/","table":"https://iothubtestprashmo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprepr","name":"iothubtestprepr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-05T17:19:25.3718430Z","primaryEndpoints":{"blob":"https://iothubtestprepr.blob.core.windows.net/","queue":"https://iothubtestprepr.queue.core.windows.net/","table":"https://iothubtestprepr.table.core.windows.net/","file":"https://iothubtestprepr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprepr-secondary.blob.core.windows.net/","queue":"https://iothubtestprepr-secondary.queue.core.windows.net/","table":"https://iothubtestprepr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrajave","name":"iothubtestrajave","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-20T00:31:23.1768369Z","primaryEndpoints":{"blob":"https://iothubtestrajave.blob.core.windows.net/","queue":"https://iothubtestrajave.queue.core.windows.net/","table":"https://iothubtestrajave.table.core.windows.net/","file":"https://iothubtestrajave.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrajave-secondary.blob.core.windows.net/","queue":"https://iothubtestrajave-secondary.queue.core.windows.net/","table":"https://iothubtestrajave-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestraviy","name":"iothubtestraviy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T17:42:52.3734464Z","primaryEndpoints":{"blob":"https://iothubtestraviy.blob.core.windows.net/","queue":"https://iothubtestraviy.queue.core.windows.net/","table":"https://iothubtestraviy.table.core.windows.net/","file":"https://iothubtestraviy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestraviy-secondary.blob.core.windows.net/","queue":"https://iothubtestraviy-secondary.queue.core.windows.net/","table":"https://iothubtestraviy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrechan","name":"iothubtestrechan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:57:31.1606191Z","primaryEndpoints":{"blob":"https://iothubtestrechan.blob.core.windows.net/","queue":"https://iothubtestrechan.queue.core.windows.net/","table":"https://iothubtestrechan.table.core.windows.net/","file":"https://iothubtestrechan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrechan-secondary.blob.core.windows.net/","queue":"https://iothubtestrechan-secondary.queue.core.windows.net/","table":"https://iothubtestrechan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrentu","name":"iothubtestrentu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:40:53.7087040Z","primaryEndpoints":{"blob":"https://iothubtestrentu.blob.core.windows.net/","queue":"https://iothubtestrentu.queue.core.windows.net/","table":"https://iothubtestrentu.table.core.windows.net/","file":"https://iothubtestrentu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrentu-secondary.blob.core.windows.net/","queue":"https://iothubtestrentu-secondary.queue.core.windows.net/","table":"https://iothubtestrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrokhande","name":"iothubtestrokhande","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T02:32:15.1855822Z","primaryEndpoints":{"blob":"https://iothubtestrokhande.blob.core.windows.net/","queue":"https://iothubtestrokhande.queue.core.windows.net/","table":"https://iothubtestrokhande.table.core.windows.net/","file":"https://iothubtestrokhande.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrokhande-secondary.blob.core.windows.net/","queue":"https://iothubtestrokhande-secondary.queue.core.windows.net/","table":"https://iothubtestrokhande-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsachinc","name":"iothubtestsachinc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T20:57:22.1666634Z","primaryEndpoints":{"blob":"https://iothubtestsachinc.blob.core.windows.net/","queue":"https://iothubtestsachinc.queue.core.windows.net/","table":"https://iothubtestsachinc.table.core.windows.net/","file":"https://iothubtestsachinc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsachinc-secondary.blob.core.windows.net/","queue":"https://iothubtestsachinc-secondary.queue.core.windows.net/","table":"https://iothubtestsachinc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsaganeri","name":"iothubtestsaganeri","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T00:08:11.2278020Z","primaryEndpoints":{"blob":"https://iothubtestsaganeri.blob.core.windows.net/","queue":"https://iothubtestsaganeri.queue.core.windows.net/","table":"https://iothubtestsaganeri.table.core.windows.net/","file":"https://iothubtestsaganeri.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsaganeri-secondary.blob.core.windows.net/","queue":"https://iothubtestsaganeri-secondary.queue.core.windows.net/","table":"https://iothubtestsaganeri-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsalall","name":"iothubtestsalall","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-08T21:34:10.1717362Z","primaryEndpoints":{"blob":"https://iothubtestsalall.blob.core.windows.net/","queue":"https://iothubtestsalall.queue.core.windows.net/","table":"https://iothubtestsalall.table.core.windows.net/","file":"https://iothubtestsalall.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsalall-secondary.blob.core.windows.net/","queue":"https://iothubtestsalall-secondary.queue.core.windows.net/","table":"https://iothubtestsalall-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsamguo","name":"iothubtestsamguo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:02:49.8084201Z","primaryEndpoints":{"blob":"https://iothubtestsamguo.blob.core.windows.net/","queue":"https://iothubtestsamguo.queue.core.windows.net/","table":"https://iothubtestsamguo.table.core.windows.net/","file":"https://iothubtestsamguo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsamguo-secondary.blob.core.windows.net/","queue":"https://iothubtestsamguo-secondary.queue.core.windows.net/","table":"https://iothubtestsamguo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsansun","name":"iothubtestsansun","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T22:00:11.9669713Z","primaryEndpoints":{"blob":"https://iothubtestsansun.blob.core.windows.net/","queue":"https://iothubtestsansun.queue.core.windows.net/","table":"https://iothubtestsansun.table.core.windows.net/","file":"https://iothubtestsansun.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsansun-secondary.blob.core.windows.net/","queue":"https://iothubtestsansun-secondary.queue.core.windows.net/","table":"https://iothubtestsansun-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestshishu","name":"iothubtestshishu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T02:08:28.2187591Z","primaryEndpoints":{"blob":"https://iothubtestshishu.blob.core.windows.net/","queue":"https://iothubtestshishu.queue.core.windows.net/","table":"https://iothubtestshishu.table.core.windows.net/","file":"https://iothubtestshishu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestshishu-secondary.blob.core.windows.net/","queue":"https://iothubtestshishu-secondary.queue.core.windows.net/","table":"https://iothubtestshishu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestskintali","name":"iothubtestskintali","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:54:13.6485612Z","primaryEndpoints":{"blob":"https://iothubtestskintali.blob.core.windows.net/","queue":"https://iothubtestskintali.queue.core.windows.net/","table":"https://iothubtestskintali.table.core.windows.net/","file":"https://iothubtestskintali.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestskintali-secondary.blob.core.windows.net/","queue":"https://iothubtestskintali-secondary.queue.core.windows.net/","table":"https://iothubtestskintali-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestspradhan","name":"iothubtestspradhan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T03:14:36.7417452Z","primaryEndpoints":{"blob":"https://iothubtestspradhan.blob.core.windows.net/","queue":"https://iothubtestspradhan.queue.core.windows.net/","table":"https://iothubtestspradhan.table.core.windows.net/","file":"https://iothubtestspradhan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestspradhan-secondary.blob.core.windows.net/","queue":"https://iothubtestspradhan-secondary.queue.core.windows.net/","table":"https://iothubtestspradhan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestswkrovvi","name":"iothubtestswkrovvi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-21T22:29:05.5365174Z","primaryEndpoints":{"blob":"https://iothubtestswkrovvi.blob.core.windows.net/","queue":"https://iothubtestswkrovvi.queue.core.windows.net/","table":"https://iothubtestswkrovvi.table.core.windows.net/","file":"https://iothubtestswkrovvi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestswkrovvi-secondary.blob.core.windows.net/","queue":"https://iothubtestswkrovvi-secondary.queue.core.windows.net/","table":"https://iothubtestswkrovvi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttadesseb","name":"iothubtesttadesseb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-13T17:12:33.4184293Z","primaryEndpoints":{"blob":"https://iothubtesttadesseb.blob.core.windows.net/","queue":"https://iothubtesttadesseb.queue.core.windows.net/","table":"https://iothubtesttadesseb.table.core.windows.net/","file":"https://iothubtesttadesseb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttadesseb-secondary.blob.core.windows.net/","queue":"https://iothubtesttadesseb-secondary.queue.core.windows.net/","table":"https://iothubtesttadesseb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttestarm5","name":"iothubtesttestarm5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T21:30:06.3944118Z","primaryEndpoints":{"blob":"https://iothubtesttestarm5.blob.core.windows.net/","queue":"https://iothubtesttestarm5.queue.core.windows.net/","table":"https://iothubtesttestarm5.table.core.windows.net/","file":"https://iothubtesttestarm5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttestarm5-secondary.blob.core.windows.net/","queue":"https://iothubtesttestarm5-secondary.queue.core.windows.net/","table":"https://iothubtesttestarm5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestvishalg","name":"iothubtestvishalg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-03T23:08:30.0223446Z","primaryEndpoints":{"blob":"https://iothubtestvishalg.blob.core.windows.net/","queue":"https://iothubtestvishalg.queue.core.windows.net/","table":"https://iothubtestvishalg.table.core.windows.net/","file":"https://iothubtestvishalg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestvishalg-secondary.blob.core.windows.net/","queue":"https://iothubtestvishalg-secondary.queue.core.windows.net/","table":"https://iothubtestvishalg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzadixon","name":"iothubtestzadixon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T19:01:04.0109651Z","primaryEndpoints":{"blob":"https://iothubtestzadixon.blob.core.windows.net/","queue":"https://iothubtestzadixon.queue.core.windows.net/","table":"https://iothubtestzadixon.table.core.windows.net/","file":"https://iothubtestzadixon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzadixon-secondary.blob.core.windows.net/","queue":"https://iothubtestzadixon-secondary.queue.core.windows.net/","table":"https://iothubtestzadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen10","name":"iothubtestzagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:25:38.6905986Z","primaryEndpoints":{"blob":"https://iothubtestzagen10.blob.core.windows.net/","queue":"https://iothubtestzagen10.queue.core.windows.net/","table":"https://iothubtestzagen10.table.core.windows.net/","file":"https://iothubtestzagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen10-secondary.queue.core.windows.net/","table":"https://iothubtestzagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen12","name":"iothubtestzagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:57:42.4098682Z","primaryEndpoints":{"blob":"https://iothubtestzagen12.blob.core.windows.net/","queue":"https://iothubtestzagen12.queue.core.windows.net/","table":"https://iothubtestzagen12.table.core.windows.net/","file":"https://iothubtestzagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen12-secondary.queue.core.windows.net/","table":"https://iothubtestzagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen13","name":"iothubtestzagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:55:47.9972019Z","primaryEndpoints":{"blob":"https://iothubtestzagen13.blob.core.windows.net/","queue":"https://iothubtestzagen13.queue.core.windows.net/","table":"https://iothubtestzagen13.table.core.windows.net/","file":"https://iothubtestzagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen13-secondary.queue.core.windows.net/","table":"https://iothubtestzagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen14","name":"iothubtestzagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T09:13:59.2559614Z","primaryEndpoints":{"blob":"https://iothubtestzagen14.blob.core.windows.net/","queue":"https://iothubtestzagen14.queue.core.windows.net/","table":"https://iothubtestzagen14.table.core.windows.net/","file":"https://iothubtestzagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen14-secondary.queue.core.windows.net/","table":"https://iothubtestzagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen15","name":"iothubtestzagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T07:43:56.5112954Z","primaryEndpoints":{"blob":"https://iothubtestzagen15.blob.core.windows.net/","queue":"https://iothubtestzagen15.queue.core.windows.net/","table":"https://iothubtestzagen15.table.core.windows.net/","file":"https://iothubtestzagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen15-secondary.queue.core.windows.net/","table":"https://iothubtestzagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent5","name":"iothubtestzagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T22:41:21.2471564Z","primaryEndpoints":{"blob":"https://iothubtestzagent5.blob.core.windows.net/","queue":"https://iothubtestzagent5.queue.core.windows.net/","table":"https://iothubtestzagent5.table.core.windows.net/","file":"https://iothubtestzagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent5-secondary.queue.core.windows.net/","table":"https://iothubtestzagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent6","name":"iothubtestzagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:23:38.0340787Z","primaryEndpoints":{"blob":"https://iothubtestzagent6.blob.core.windows.net/","queue":"https://iothubtestzagent6.queue.core.windows.net/","table":"https://iothubtestzagent6.table.core.windows.net/","file":"https://iothubtestzagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent6-secondary.queue.core.windows.net/","table":"https://iothubtestzagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent7","name":"iothubtestzagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T19:01:03.0291717Z","primaryEndpoints":{"blob":"https://iothubtestzagent7.blob.core.windows.net/","queue":"https://iothubtestzagent7.queue.core.windows.net/","table":"https://iothubtestzagent7.table.core.windows.net/","file":"https://iothubtestzagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent7-secondary.queue.core.windows.net/","table":"https://iothubtestzagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent8","name":"iothubtestzagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T20:34:35.3897729Z","primaryEndpoints":{"blob":"https://iothubtestzagent8.blob.core.windows.net/","queue":"https://iothubtestzagent8.queue.core.windows.net/","table":"https://iothubtestzagent8.table.core.windows.net/","file":"https://iothubtestzagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent8-secondary.queue.core.windows.net/","table":"https://iothubtestzagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzhangyih","name":"iothubtestzhangyih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T01:43:54.5986244Z","primaryEndpoints":{"blob":"https://iothubtestzhangyih.blob.core.windows.net/","queue":"https://iothubtestzhangyih.queue.core.windows.net/","table":"https://iothubtestzhangyih.table.core.windows.net/","file":"https://iothubtestzhangyih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzhangyih-secondary.blob.core.windows.net/","queue":"https://iothubtestzhangyih-secondary.queue.core.windows.net/","table":"https://iothubtestzhangyih-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzheg","name":"iothubtestzheg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T06:16:21.8173801Z","primaryEndpoints":{"blob":"https://iothubtestzheg.blob.core.windows.net/","queue":"https://iothubtestzheg.queue.core.windows.net/","table":"https://iothubtestzheg.table.core.windows.net/","file":"https://iothubtestzheg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzheg-secondary.blob.core.windows.net/","queue":"https://iothubtestzheg-secondary.queue.core.windows.net/","table":"https://iothubtestzheg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/c_westus/providers/Microsoft.Storage/storageAccounts/simmvp3ovk0c6molt3c7178","name":"simmvp3ovk0c6molt3c7178","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T01:14:27.5133334Z","primaryEndpoints":{"blob":"https://simmvp3ovk0c6molt3c7178.blob.core.windows.net/","queue":"https://simmvp3ovk0c6molt3c7178.queue.core.windows.net/","table":"https://simmvp3ovk0c6molt3c7178.table.core.windows.net/","file":"https://simmvp3ovk0c6molt3c7178.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag215","name":"skintalitestdiag215","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T17:06:36.6308986Z","primaryEndpoints":{"blob":"https://skintalitestdiag215.blob.core.windows.net/","queue":"https://skintalitestdiag215.queue.core.windows.net/","table":"https://skintalitestdiag215.table.core.windows.net/","file":"https://skintalitestdiag215.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag","name":"mgtlabdiag","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T01:59:01.5975155Z","primaryEndpoints":{"blob":"https://mgtlabdiag.blob.core.windows.net/","queue":"https://mgtlabdiag.queue.core.windows.net/","table":"https://mgtlabdiag.table.core.windows.net/","file":"https://mgtlabdiag.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fips-finagle-investigate/providers/Microsoft.Storage/storageAccounts/fips0finagle0investigate","name":"fips0finagle0investigate","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-02-27T00:52:30.3775048Z","primaryEndpoints":{"dfs":"https://fips0finagle0investigate.dfs.core.windows.net/","web":"https://fips0finagle0investigate.z21.web.core.windows.net/","blob":"https://fips0finagle0investigate.blob.core.windows.net/","queue":"https://fips0finagle0investigate.queue.core.windows.net/","table":"https://fips0finagle0investigate.table.core.windows.net/","file":"https://fips0finagle0investigate.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttest2ac","name":"routingrunsttest2ac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-25T01:55:14.5711807Z","primaryEndpoints":{"dfs":"https://routingrunsttest2ac.dfs.core.windows.net/","blob":"https://routingrunsttest2ac.blob.core.windows.net/","table":"https://routingrunsttest2ac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T18:54:05.0784961Z","primaryEndpoints":{"dfs":"https://shishustoragenormal.dfs.core.windows.net/","web":"https://shishustoragenormal.z21.web.core.windows.net/","blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishustoragenormal-secondary.dfs.core.windows.net/","web":"https://shishustoragenormal-secondary.z21.web.core.windows.net/","blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/storageconsttestac","name":"storageconsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T23:36:34.6272473Z","primaryEndpoints":{"dfs":"https://storageconsttestac.dfs.core.windows.net/","blob":"https://storageconsttestac.blob.core.windows.net/","table":"https://storageconsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbuctestsa","name":"andbuctestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T06:23:59.6135355Z","primaryEndpoints":{"dfs":"https://andbuctestsa.dfs.core.windows.net/","web":"https://andbuctestsa.z19.web.core.windows.net/","blob":"https://andbuctestsa.blob.core.windows.net/","queue":"https://andbuctestsa.queue.core.windows.net/","table":"https://andbuctestsa.table.core.windows.net/","file":"https://andbuctestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbuctestsa-secondary.dfs.core.windows.net/","web":"https://andbuctestsa-secondary.z19.web.core.windows.net/","blob":"https://andbuctestsa-secondary.blob.core.windows.net/","queue":"https://andbuctestsa-secondary.queue.core.windows.net/","table":"https://andbuctestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurpoc-rg/providers/Microsoft.Storage/storageAccounts/ankurpoc","name":"ankurpoc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T14:03:58.5309983Z","primaryEndpoints":{"dfs":"https://ankurpoc.dfs.core.windows.net/","web":"https://ankurpoc.z19.web.core.windows.net/","blob":"https://ankurpoc.blob.core.windows.net/","queue":"https://ankurpoc.queue.core.windows.net/","table":"https://ankurpoc.table.core.windows.net/","file":"https://ankurpoc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ankurpoc-secondary.dfs.core.windows.net/","web":"https://ankurpoc-secondary.z19.web.core.windows.net/","blob":"https://ankurpoc-secondary.blob.core.windows.net/","queue":"https://ankurpoc-secondary.queue.core.windows.net/","table":"https://ankurpoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/dtnotificationbugbash","name":"dtnotificationbugbash","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-24T23:06:57.7437857Z","primaryEndpoints":{"dfs":"https://dtnotificationbugbash.dfs.core.windows.net/","web":"https://dtnotificationbugbash.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash.blob.core.windows.net/","queue":"https://dtnotificationbugbash.queue.core.windows.net/","table":"https://dtnotificationbugbash.table.core.windows.net/","file":"https://dtnotificationbugbash.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtnotificationbugbash-secondary.dfs.core.windows.net/","web":"https://dtnotificationbugbash-secondary.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash-secondary.blob.core.windows.net/","queue":"https://dtnotificationbugbash-secondary.queue.core.windows.net/","table":"https://dtnotificationbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/jichangrgdiag","name":"jichangrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-01T23:47:57.7921155Z","primaryEndpoints":{"blob":"https://jichangrgdiag.blob.core.windows.net/","queue":"https://jichangrgdiag.queue.core.windows.net/","table":"https://jichangrgdiag.table.core.windows.net/","file":"https://jichangrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/storageaccountaskhu9745","name":"storageaccountaskhu9745","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-16T01:13:12.1748216Z","primaryEndpoints":{"blob":"https://storageaccountaskhu9745.blob.core.windows.net/","queue":"https://storageaccountaskhu9745.queue.core.windows.net/","table":"https://storageaccountaskhu9745.table.core.windows.net/","file":"https://storageaccountaskhu9745.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag788","name":"magargdiag788","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-23T04:25:34.0062642Z","primaryEndpoints":{"blob":"https://magargdiag788.blob.core.windows.net/","queue":"https://magargdiag788.queue.core.windows.net/","table":"https://magargdiag788.table.core.windows.net/","file":"https://magargdiag788.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag","name":"magargdiag","type":"Microsoft.Storage/storageAccounts","location":"westindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-13T22:06:53.9752332Z","primaryEndpoints":{"blob":"https://magargdiag.blob.core.windows.net/","queue":"https://magargdiag.queue.core.windows.net/","table":"https://magargdiag.table.core.windows.net/","file":"https://magargdiag.file.core.windows.net/"},"primaryLocation":"westindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbucteststorage","name":"andbucteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-20T22:17:30.2844387Z","primaryEndpoints":{"dfs":"https://andbucteststorage.dfs.core.windows.net/","web":"https://andbucteststorage.z5.web.core.windows.net/","blob":"https://andbucteststorage.blob.core.windows.net/","queue":"https://andbucteststorage.queue.core.windows.net/","table":"https://andbucteststorage.table.core.windows.net/","file":"https://andbucteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbucteststorage-secondary.dfs.core.windows.net/","web":"https://andbucteststorage-secondary.z5.web.core.windows.net/","blob":"https://andbucteststorage-secondary.blob.core.windows.net/","queue":"https://andbucteststorage-secondary.queue.core.windows.net/","table":"https://andbucteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-site/providers/Microsoft.Storage/storageAccounts/rajstaticsite","name":"rajstaticsite","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T14:49:40.2589627Z","primaryEndpoints":{"dfs":"https://rajstaticsite.dfs.core.windows.net/","web":"https://rajstaticsite.z5.web.core.windows.net/","blob":"https://rajstaticsite.blob.core.windows.net/","queue":"https://rajstaticsite.queue.core.windows.net/","table":"https://rajstaticsite.table.core.windows.net/","file":"https://rajstaticsite.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag","name":"skintalitestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T00:38:53.3700818Z","primaryEndpoints":{"blob":"https://skintalitestdiag.blob.core.windows.net/","queue":"https://skintalitestdiag.queue.core.windows.net/","table":"https://skintalitestdiag.table.core.windows.net/","file":"https://skintalitestdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mchaiaz/providers/Microsoft.Storage/storageAccounts/mchaizrs","name":"mchaizrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-18T23:29:18.2105166Z","primaryEndpoints":{"dfs":"https://mchaizrs.dfs.core.windows.net/","web":"https://mchaizrs.z3.web.core.windows.net/","blob":"https://mchaizrs.blob.core.windows.net/","queue":"https://mchaizrs.queue.core.windows.net/","table":"https://mchaizrs.table.core.windows.net/","file":"https://mchaizrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '98382' + - '297388' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:22:53 GMT + - Sun, 14 Jun 2020 17:44:35 GMT expires: - '-1' pragma: @@ -43,16 +44,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - b39a128f-d01d-4b01-be64-a16fdd1d29f9 - - 9cbe201d-f86b-40aa-b4b5-968d7d87b18c - - 16b4f856-838a-4583-9366-def084881bc4 - - dcb1a0c7-5d58-47b1-8f9e-435dad7fb4b0 - - f668d2b7-f380-4b65-b38a-9789ac88d732 - - 7f94fe73-0e3d-4902-a938-08048500a358 - - 71614767-230e-435e-83dc-b77cbc7ab0fa - - 433fd54f-b393-45c3-8e64-107e57b19265 - - ba6539b3-66b9-4790-9b13-a8dd31e7ba03 - - 79a1de19-74d3-4324-adda-a2f1b3f4e88c + - ae3866d0-2b47-4744-91f7-d805031e9f5c + - 9519aac1-6189-4a7d-a877-9fcd89443db4 + - 4e557663-23d0-4b31-add3-e5c718789b2d + - f17b854c-699e-4d23-84bb-100720b5b28b + - c7ce79cf-5761-4f1b-b0f6-e9b68645b270 + - 528e2ce5-9fde-4fb6-a9f1-4705c0c6a0d6 + - e2f72be0-d382-40fe-b25e-da5fed643c40 + - 389e1bc6-7385-4cf9-beeb-f4d8b3b74149 + - c3aaa7af-0e4b-4c1c-9fe2-3f6e5f3c7e7d + - 8d4a89ae-a329-412b-971c-381094308819 + - 9f027dfe-adaf-45d8-866b-aa760463f9e0 + - a0ecf594-684b-4417-82af-957ddd90456c + - 5f775a8f-af6b-4fea-80a1-d0c572dab350 status: code: 200 message: OK @@ -72,12 +76,12 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-storage/8.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2017-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -89,7 +93,7 @@ interactions: content-type: - application/json date: - - Sat, 28 Mar 2020 06:22:53 GMT + - Sun, 14 Jun 2020 17:44:35 GMT expires: - '-1' pragma: @@ -117,11 +121,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.8.1; Windows 10) AZURECLI/2.2.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.3; Windows 10) AZURECLI/2.7.0 x-ms-date: - - Sat, 28 Mar 2020 06:22:58 GMT + - Sun, 14 Jun 2020 17:44:36 GMT x-ms-version: - - '2017-11-09' + - '2018-11-09' method: PUT uri: https://clitest000002.blob.core.windows.net/iothubcontainer2?restype=container response: @@ -131,15 +135,15 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:22:57 GMT + - Sun, 14 Jun 2020 17:44:36 GMT etag: - - '"0x8D7D2E07578FA61"' + - '"0x8D8108A9B333A23"' last-modified: - - Sat, 28 Mar 2020 06:22:58 GMT + - Sun, 14 Jun 2020 17:44:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2017-11-09' + - '2018-11-09' status: code: 201 message: Created @@ -159,12 +163,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-storage/8.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2017-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -176,7 +180,7 @@ interactions: content-type: - application/json date: - - Sat, 28 Mar 2020 06:23:05 GMT + - Sun, 14 Jun 2020 17:44:37 GMT expires: - '-1' pragma: @@ -210,24 +214,24 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-03-28T06:22:17Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-14T17:44:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '429' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:23:07 GMT + - Sun, 14 Jun 2020 17:44:37 GMT expires: - '-1' pragma: @@ -259,8 +263,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -268,16 +272,16 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest2","createdAt":"2020-03-28T06:23:13.533Z","updatedAt":"2020-03-28T06:23:13.533Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:44:39.27Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '763' + - '761' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:23:14 GMT + - Sun, 14 Jun 2020 17:44:45 GMT expires: - '-1' pragma: @@ -314,23 +318,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2?api-version=2017-04-01 response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest2","createdAt":"2020-03-28T06:23:13.533Z","updatedAt":"2020-03-28T06:23:13.533Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:44:39.27Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '763' + - '761' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:23:45 GMT + - Sun, 14 Jun 2020 17:45:14 GMT expires: - '-1' pragma: @@ -365,23 +369,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2?api-version=2017-04-01 response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest2","createdAt":"2020-03-28T06:23:13.533Z","updatedAt":"2020-03-28T06:23:58.107Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:45:32.9Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '761' + - '758' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:16 GMT + - Sun, 14 Jun 2020 17:45:45 GMT expires: - '-1' pragma: @@ -416,8 +420,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -425,16 +429,16 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest2","createdAt":"2020-03-28T06:23:13.533Z","updatedAt":"2020-03-28T06:23:58.107Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:45:32.9Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '761' + - '758' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:18 GMT + - Sun, 14 Jun 2020 17:45:45 GMT expires: - '-1' pragma: @@ -473,8 +477,8 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -482,7 +486,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2/eventhubs/eventHubiothubfortest","name":"eventHubiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-03-28T06:24:21.377Z","updatedAt":"2020-03-28T06:24:21.647Z","partitionIds":["0","1","2","3"]}}' + US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-06-14T17:45:47.717Z","updatedAt":"2020-06-14T17:45:48.017Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache @@ -491,7 +495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:21 GMT + - Sun, 14 Jun 2020 17:45:48 GMT expires: - '-1' pragma: @@ -532,8 +536,8 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name --rights User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -550,16 +554,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:23 GMT + - Sun, 14 Jun 2020 17:45:48 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -589,15 +593,15 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-eventhub/3.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest/ListKeys?api-version=2017-04-01 response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=QiHfIzq98SJ93wxCoTSJBplFOurQxQFH5m2pDl7jvxY=;EntityPath=eventHubiothubfortest","primaryKey":"ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=","secondaryKey":"QiHfIzq98SJ93wxCoTSJBplFOurQxQFH5m2pDl7jvxY=","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uKFHO5H5KYqv4pdSA+nAiCfj/rk0NplybBnQSKrNsI0=;EntityPath=eventHubiothubfortest","primaryKey":"jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=","secondaryKey":"uKFHO5H5KYqv4pdSA+nAiCfj/rk0NplybBnQSKrNsI0=","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache @@ -606,16 +610,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:24 GMT + - Sun, 14 Jun 2020 17:45:50 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -649,12 +653,12 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":true,"reason":"Invalid","message":null}' @@ -666,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:28 GMT + - Sun, 14 Jun 2020 17:45:51 GMT expires: - '-1' pragma: @@ -702,24 +706,24 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-03-28T06:22:17Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-14T17:44:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '429' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:30 GMT + - Sun, 14 Jun 2020 17:45:51 GMT expires: - '-1' pragma: @@ -759,18 +763,18 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQxMDZiZjUtMTNkNC00MGRhLWEwNjYtOTA5ZDYxMjg5ZTIx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -778,7 +782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:24:39 GMT + - Sun, 14 Jun 2020 17:46:04 GMT expires: - '-1' pragma: @@ -810,10 +814,59 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 14 Jun 2020 17:46: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --partition-count --retention-day --c2d-ttl --c2d-max-delivery-count + --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count + --fileupload-notification-ttl + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQxMDZiZjUtMTNkNC00MGRhLWEwNjYtOTA5ZDYxMjg5ZTIx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -825,7 +878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:25:10 GMT + - Sun, 14 Jun 2020 17:47:05 GMT expires: - '-1' pragma: @@ -859,10 +912,10 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQxMDZiZjUtMTNkNC00MGRhLWEwNjYtOTA5ZDYxMjg5ZTIx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -874,7 +927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:25:40 GMT + - Sun, 14 Jun 2020 17:47:35 GMT expires: - '-1' pragma: @@ -908,10 +961,10 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQxMDZiZjUtMTNkNC00MGRhLWEwNjYtOTA5ZDYxMjg5ZTIx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -923,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:11 GMT + - Sun, 14 Jun 2020 17:48:06 GMT expires: - '-1' pragma: @@ -957,10 +1010,10 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGQxMDZiZjUtMTNkNC00MGRhLWEwNjYtOTA5ZDYxMjg5ZTIx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -972,7 +1025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:42 GMT + - Sun, 14 Jun 2020 17:48:36 GMT expires: - '-1' pragma: @@ -1006,14 +1059,14 @@ interactions: --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1022,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:43 GMT + - Sun, 14 Jun 2020 17:48:37 GMT expires: - '-1' pragma: @@ -1054,25 +1107,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '1681' + - '141580' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:45 GMT + - Sun, 14 Jun 2020 17:48:49 GMT expires: - '-1' pragma: @@ -1106,15 +1263,15 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1124,7 +1281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:46 GMT + - Sun, 14 Jun 2020 17:48:49 GMT expires: - '-1' pragma: @@ -1158,25 +1315,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '1681' + - '141580' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:47 GMT + - Sun, 14 Jun 2020 17:49:00 GMT expires: - '-1' pragma: @@ -1210,15 +1471,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1228,7 +1489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:49 GMT + - Sun, 14 Jun 2020 17:49:00 GMT expires: - '-1' pragma: @@ -1262,25 +1523,129 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '1681' + - '141580' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:49 GMT + - Sun, 14 Jun 2020 17:49:11 GMT expires: - '-1' pragma: @@ -1314,16 +1679,16 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -1332,7 +1697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:55 GMT + - Sun, 14 Jun 2020 17:49:12 GMT expires: - '-1' pragma: @@ -1366,25 +1731,129 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '1681' + - '141580' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:55 GMT + - Sun, 14 Jun 2020 17:49:24 GMT expires: - '-1' pragma: @@ -1416,25 +1885,129 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '1681' + - '141580' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:26:56 GMT + - Sun, 14 Jun 2020 17:49:35 GMT expires: - '-1' pragma: @@ -1466,44 +2039,148 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1681' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:26: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-content-type-options: - - nosniff - status: - code: 200 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache + content-length: + - '141580' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 14 Jun 2020 17:49: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-content-type-options: + - nosniff + status: + code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdnrw=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDo5Y4=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -1530,27 +2207,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdnrw=''}' + - '{''IF-MATCH'': ''AAAAABDo5Y4=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnrw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:26:29 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:26:29 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:26:29 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:26:29 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:26:29 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:26:29 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:26:29 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:26:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDIzNGZlOTktNDdmZS00NGYyLTliZWMtOGZjYjhhMjA4MGNi?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWU1N2I0NDgtMTVkYi00OWVjLWE3NTMtOTYzMDBlZTNkNzhh?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1558,7 +2235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:04 GMT + - Sun, 14 Jun 2020 17:49:48 GMT expires: - '-1' pragma: @@ -1588,10 +2265,10 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZDIzNGZlOTktNDdmZS00NGYyLTliZWMtOGZjYjhhMjA4MGNi?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWU1N2I0NDgtMTVkYi00OWVjLWE3NTMtOTYzMDBlZTNkNzhh?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1603,7 +2280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:38 GMT + - Sun, 14 Jun 2020 17:50:19 GMT expires: - '-1' pragma: @@ -1635,23 +2312,23 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:39 GMT + - Sun, 14 Jun 2020 17:50:20 GMT expires: - '-1' pragma: @@ -1683,25 +2360,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:43 GMT + - Sun, 14 Jun 2020 17:50:31 GMT expires: - '-1' pragma: @@ -1733,25 +2514,25 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' headers: cache-control: - no-cache content-length: - - '1815' + - '1877' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:45 GMT + - Sun, 14 Jun 2020 17:50:32 GMT expires: - '-1' pragma: @@ -1783,25 +2564,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:46 GMT + - Sun, 14 Jun 2020 17:50:44 GMT expires: - '-1' pragma: @@ -1833,12 +2718,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/skus?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/skus?api-version=2020-03-01 response: body: string: '{"value":[{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S1","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S2","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S3","tier":"Standard"},"capacity":{"minimum":1,"maximum":10,"default":1,"scaleType":"Manual"}}]}' @@ -1850,7 +2735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:47 GMT + - Sun, 14 Jun 2020 17:50:44 GMT expires: - '-1' pragma: @@ -1882,25 +2767,129 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:50 GMT + - Sun, 14 Jun 2020 17:50:55 GMT expires: - '-1' pragma: @@ -1934,16 +2923,16 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -1952,7 +2941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:50 GMT + - Sun, 14 Jun 2020 17:50:55 GMT expires: - '-1' pragma: @@ -1973,17 +2962,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdnyk=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=", - "secondaryKey": "ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=", - "secondaryKey": "g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=", - "secondaryKey": "iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=", - "secondaryKey": "iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=", - "secondaryKey": "CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=", "rights": "RegistryWrite"}, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpE0o=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", + "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", + "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", + "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", + "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", + "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, {"keyName": "test_policy", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], @@ -2011,28 +3000,28 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdnyk=''}' + - '{''IF-MATCH'': ''AAAAABDpE0o=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdnyk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"XFbHyxZH/liKZqpWpV0+4C4DwZafXgRz+xrGDb3rcx8=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:27:12 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:27:12 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:27:12 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:27:12 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:27:12 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:27:12 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:27:12 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:27:12 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2U4Y2ZlMmYtN2I1NC00MWI5LWJjNTAtYWFhNTJkZWNlOTgz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4YTQ0ODctOWY5NC00ODQxLTlkNjItMDAwMjBjYmJiMGYy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2040,7 +3029,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:27:58 GMT + - Sun, 14 Jun 2020 17:50:58 GMT expires: - '-1' pragma: @@ -2070,10 +3059,10 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2U4Y2ZlMmYtN2I1NC00MWI5LWJjNTAtYWFhNTJkZWNlOTgz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4YTQ0ODctOWY5NC00ODQxLTlkNjItMDAwMjBjYmJiMGYy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2085,7 +3074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:34 GMT + - Sun, 14 Jun 2020 17:51:29 GMT expires: - '-1' pragma: @@ -2117,23 +3106,23 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdn9c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:36 GMT + - Sun, 14 Jun 2020 17:51:29 GMT expires: - '-1' pragma: @@ -2165,25 +3154,129 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdn9c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:40 GMT + - Sun, 14 Jun 2020 17:51:42 GMT expires: - '-1' pragma: @@ -2217,16 +3310,16 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"XFbHyxZH/liKZqpWpV0+4C4DwZafXgRz+xrGDb3rcx8=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -2236,7 +3329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:41 GMT + - Sun, 14 Jun 2020 17:51:42 GMT expires: - '-1' pragma: @@ -2252,7 +3345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2270,25 +3363,129 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdn9c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:44 GMT + - Sun, 14 Jun 2020 17:51:53 GMT expires: - '-1' pragma: @@ -2322,15 +3519,15 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"test_policy","primaryKey":"XFbHyxZH/liKZqpWpV0+4C4DwZafXgRz+xrGDb3rcx8=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -2340,7 +3537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:44 GMT + - Sun, 14 Jun 2020 17:51:54 GMT expires: - '-1' pragma: @@ -2374,25 +3571,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdn9c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:45 GMT + - Sun, 14 Jun 2020 17:52:05 GMT expires: - '-1' pragma: @@ -2426,16 +3727,16 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"XFbHyxZH/liKZqpWpV0+4C4DwZafXgRz+xrGDb3rcx8=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -2445,7 +3746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:46 GMT + - Sun, 14 Jun 2020 17:52:06 GMT expires: - '-1' pragma: @@ -2466,19 +3767,19 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdn9c=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=", - "secondaryKey": "ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=", - "secondaryKey": "g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=", - "secondaryKey": "iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=", - "secondaryKey": "iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=", - "secondaryKey": "CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=", - "secondaryKey": "veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=", "rights": "RegistryWrite, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpRnk=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", + "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", + "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", + "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", + "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", + "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=", + "secondaryKey": "OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -2505,29 +3806,29 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdn9c=''}' + - '{''IF-MATCH'': ''AAAAABDpRnk=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdn9c=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:28:05 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:28:05 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:28:05 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:28:05 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:28:05 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:28:05 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:28:05 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:28:05 GMT"},{"KeyName":"test_policy","PrimaryKey":"XFbHyxZH/liKZqpWpV0+4C4DwZafXgRz+xrGDb3rcx8=","SecondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:28:05 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:28:05 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"test_policy","PrimaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","SecondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODAzN2FlMjMtZjBiNC00ODAzLTg4Y2UtM2ZhMGE4ZDAyNWM1?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2NTIxYzItOWNkZC00MmI1LTkxMzAtNmNmNjU4OWQ5ZDE4?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2535,7 +3836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:28:55 GMT + - Sun, 14 Jun 2020 17:52:08 GMT expires: - '-1' pragma: @@ -2565,10 +3866,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODAzN2FlMjMtZjBiNC00ODAzLTg4Y2UtM2ZhMGE4ZDAyNWM1?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2NTIxYzItOWNkZC00MmI1LTkxMzAtNmNmNjU4OWQ5ZDE4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2580,7 +3881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:25 GMT + - Sun, 14 Jun 2020 17:52:39 GMT expires: - '-1' pragma: @@ -2612,23 +3913,23 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:25 GMT + - Sun, 14 Jun 2020 17:52:39 GMT expires: - '-1' pragma: @@ -2660,25 +3961,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:27 GMT + - Sun, 14 Jun 2020 17:52:51 GMT expires: - '-1' pragma: @@ -2712,15 +4117,15 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"test_policy","primaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -2730,7 +4135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:28 GMT + - Sun, 14 Jun 2020 17:52:51 GMT expires: - '-1' pragma: @@ -2764,25 +4169,129 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:29 GMT + - Sun, 14 Jun 2020 17:53:03 GMT expires: - '-1' pragma: @@ -2816,15 +4325,15 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"test_policy","primaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -2834,7 +4343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:29 GMT + - Sun, 14 Jun 2020 17:53:03 GMT expires: - '-1' pragma: @@ -2850,7 +4359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -2868,25 +4377,129 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:29 GMT + - Sun, 14 Jun 2020 17:53:14 GMT expires: - '-1' pragma: @@ -2918,25 +4531,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:30 GMT + - Sun, 14 Jun 2020 17:53:25 GMT expires: - '-1' pragma: @@ -2970,16 +4687,16 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","secondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -2989,7 +4706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:31 GMT + - Sun, 14 Jun 2020 17:53:26 GMT expires: - '-1' pragma: @@ -3005,24 +4722,24 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdoE8=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=", - "secondaryKey": "ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=", - "secondaryKey": "g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=", - "secondaryKey": "iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=", - "secondaryKey": "iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=", - "secondaryKey": "CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=", - "secondaryKey": "NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=", "rights": "RegistryWrite, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpbBU=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", + "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", + "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", + "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", + "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", + "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=", + "secondaryKey": "HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -3049,29 +4766,29 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdoE8=''}' + - '{''IF-MATCH'': ''AAAAABDpbBU=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoE8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","secondaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:03 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:03 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:03 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:03 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:03 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:03 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:03 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:03 GMT"},{"KeyName":"test_policy","PrimaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","SecondaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:03 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:03 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"test_policy","PrimaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","SecondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTI1YWIyNTMtYzY0ZC00ZWNmLWJkMTMtZjQ0MDU5OWJjMjdj?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWYyMmQxYjUtZWM2Zi00NzE1LTk1NzItODhlNjMxNTUxYTZj?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3079,7 +4796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:29:35 GMT + - Sun, 14 Jun 2020 17:53:28 GMT expires: - '-1' pragma: @@ -3091,7 +4808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -3109,10 +4826,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTI1YWIyNTMtYzY0ZC00ZWNmLWJkMTMtZjQ0MDU5OWJjMjdj?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWYyMmQxYjUtZWM2Zi00NzE1LTk1NzItODhlNjMxNTUxYTZj?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3124,7 +4841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:10 GMT + - Sun, 14 Jun 2020 17:53:58 GMT expires: - '-1' pragma: @@ -3156,23 +4873,23 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoKw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:11 GMT + - Sun, 14 Jun 2020 17:53:59 GMT expires: - '-1' pragma: @@ -3204,25 +4921,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoKw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:13 GMT + - Sun, 14 Jun 2020 17:54:11 GMT expires: - '-1' pragma: @@ -3256,15 +5077,15 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 response: body: - string: '{"keyName":"test_policy","primaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","secondaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -3274,7 +5095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:14 GMT + - Sun, 14 Jun 2020 17:54:11 GMT expires: - '-1' pragma: @@ -3290,7 +5111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -3308,25 +5129,129 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoKw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:16 GMT + - Sun, 14 Jun 2020 17:54:22 GMT expires: - '-1' pragma: @@ -3360,16 +5285,16 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","secondaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3379,7 +5304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:16 GMT + - Sun, 14 Jun 2020 17:54:22 GMT expires: - '-1' pragma: @@ -3395,7 +5320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -3415,16 +5340,16 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","secondaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3434,7 +5359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:16 GMT + - Sun, 14 Jun 2020 17:54:23 GMT expires: - '-1' pragma: @@ -3450,22 +5375,22 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdoKw=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=", - "secondaryKey": "ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=", - "secondaryKey": "g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=", - "secondaryKey": "iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=", - "secondaryKey": "iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=", - "secondaryKey": "CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=", "rights": "RegistryWrite"}], + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpjks=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", + "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", + "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", + "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", + "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", + "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -3492,28 +5417,28 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdoKw=''}' + - '{''IF-MATCH'': ''AAAAABDpjks=''}' ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdoKw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:46 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:46 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:46 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:46 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:46 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:46 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:46 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:46 GMT"},{"KeyName":"test_policy","PrimaryKey":"veat9I+o3vToCExzbzhVV0/zcywFGYLdTygLSlNXdUg=","SecondaryKey":"NS9icQsaDGofcyBwCD0gU013Fh4EFWRMRCcBcnNIHhw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:29:46 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:29:46 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"test_policy","PrimaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","SecondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2NiY2VlOTItN2Q5Ni00NDE5LWE5OTEtMGE3ZDZhYTkyMDI3?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWQ0NzZlMDMtYTM1YS00Yzc3LWFkN2QtZjVhYTg0N2Q0OGU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3521,7 +5446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:22 GMT + - Sun, 14 Jun 2020 17:54:25 GMT expires: - '-1' pragma: @@ -3533,7 +5458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -3551,10 +5476,10 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2NiY2VlOTItN2Q5Ni00NDE5LWE5OTEtMGE3ZDZhYTkyMDI3?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWQ0NzZlMDMtYTM1YS00Yzc3LWFkN2QtZjVhYTg0N2Q0OGU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3566,7 +5491,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:52 GMT + - Sun, 14 Jun 2020 17:54:56 GMT expires: - '-1' pragma: @@ -3598,23 +5523,23 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:53 GMT + - Sun, 14 Jun 2020 17:54:56 GMT expires: - '-1' pragma: @@ -3646,25 +5571,129 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:30:58 GMT + - Sun, 14 Jun 2020 17:55:09 GMT expires: - '-1' pragma: @@ -3698,428 +5727,25 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache content-length: - '905' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:30: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-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group create - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1815' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:31: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 - response: - body: - string: '{"properties":{"created":"Sat, 28 Mar 2020 06:31:04 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' - headers: - cache-control: - - no-cache - content-length: - - '401' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:31: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-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group show - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1815' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:31: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group show - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 - response: - body: - string: '{"properties":{"created":"Sat, 28 Mar 2020 06:31:04 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' - headers: - cache-control: - - no-cache - content-length: - - '401' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group list - Connection: - - keep-alive - ParameterSetName: - - --hub-name - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1815' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:31: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group list - Connection: - - keep-alive - ParameterSetName: - - --hub-name - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22 - response: - body: - string: '{"value":[{"properties":{"created":"Sat, 28 Mar 2020 06:26:20 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Sat, - 28 Mar 2020 06:31:04 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' - headers: - cache-control: - - no-cache - content-length: - - '827' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group delete - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1815' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 28 Mar 2020 06:31: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' + content-type: + - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:19 GMT + - Sun, 14 Jun 2020 17:55:09 GMT expires: - '-1' pragma: @@ -4128,10 +5754,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -4143,31 +5773,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group list + - iot hub consumer-group create Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:21 GMT + - Sun, 14 Jun 2020 17:55:20 GMT expires: - '-1' pragma: @@ -4193,30 +5927,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group list + - iot hub consumer-group create Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"created":"Sat, 28 Mar 2020 06:26:20 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"properties":{"created":"Sun, 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '425' + - '401' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:22 GMT + - Sun, 14 Jun 2020 17:55:22 GMT expires: - '-1' pragma: @@ -4231,6 +5967,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -4242,31 +5980,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job list + - iot hub consumer-group show Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:23 GMT + - Sun, 14 Jun 2020 17:55:34 GMT expires: - '-1' pragma: @@ -4292,30 +6134,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job list + - iot hub consumer-group show Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/jobs?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[]}' + string: '{"properties":{"created":"Sun, 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '12' + - '401' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:24 GMT + - Sun, 14 Jun 2020 17:55:34 GMT expires: - '-1' pragma: @@ -4341,31 +6183,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job show + - iot hub consumer-group list Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:26 GMT + - Sun, 14 Jun 2020 17:55:47 GMT expires: - '-1' pragma: @@ -4391,33 +6337,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job show + - iot hub consumer-group list Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/jobs/fake-job?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"code":404011,"httpStatusCode":"NotFound","message":"Job not found - with ID ''fake-job''. If you contact a support representative please include - this correlation identifier: 8492299b-45fc-4fb0-be03-c649c540dd9f, timestamp: - 2020-03-28 06:31:26Z, errorcode: IH404011."}' + string: '{"value":[{"properties":{"created":"Sun, 14 Jun 2020 17:47:56 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Sun, + 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache content-length: - - '265' + - '827' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:26 GMT + - Sun, 14 Jun 2020 17:55:47 GMT expires: - '-1' pragma: @@ -4426,11 +6370,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4439,31 +6387,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group delete Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:28 GMT + - Sun, 14 Jun 2020 17:55:58 GMT expires: - '-1' pragma: @@ -4489,31 +6541,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --hub-name --job-id + - --hub-name -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '1815' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Sat, 28 Mar 2020 06:31:28 GMT + - Sun, 14 Jun 2020 17:55:58 GMT expires: - '-1' pragma: @@ -4522,12 +6573,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK @@ -4539,33 +6588,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22 - response: - body: - string: '{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}' - headers: - cache-control: - - no-cache + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '203' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:31 GMT + - Sun, 14 Jun 2020 17:56:10 GMT expires: - '-1' pragma: @@ -4580,8 +6731,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: code: 200 message: OK @@ -4592,37 +6741,48 @@ interactions: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - iot hub consumer-group list Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 + ParameterSetName: + - --hub-name User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - iothubdeviceclient/2016-11-14 Azure-SDK-For-Python + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: DELETE - uri: https://iot-hub-for-test-12.azure-devices.net/jobs/fake-job?api-version=2016-11-14 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"Message":"ErrorCode:JobNotFound;NotFound","ExceptionMessage":"Tracking - ID:56d69ce7c523460a8146f2051dc47b27-G:6-TimeStamp:03/28/2020 06:31:34"}' + string: '{"value":[{"properties":{"created":"Sun, 14 Jun 2020 17:47:56 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: + cache-control: + - no-cache content-length: - - '144' + - '425' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:33 GMT - iothub-errorcode: - - JobNotFound + - Sun, 14 Jun 2020 17:56: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-content-type-options: + - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4637,25 +6797,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:34 GMT + - Sun, 14 Jun 2020 17:56:21 GMT expires: - '-1' pragma: @@ -4687,12 +6951,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/quotaMetrics?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/quotaMetrics?api-version=2020-03-01 response: body: string: '{"value":[{"name":"TotalMessages","currentValue":0,"maxValue":400000},{"name":"TotalDeviceCount","currentValue":0,"maxValue":1000000}]}' @@ -4704,7 +6968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:35 GMT + - Sun, 14 Jun 2020 17:56:22 GMT expires: - '-1' pragma: @@ -4736,25 +7000,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '1815' + - '141776' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:37 GMT + - Sun, 14 Jun 2020 17:56:33 GMT expires: - '-1' pragma: @@ -4786,12 +7154,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubStats?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubStats?api-version=2020-03-01 response: body: string: '{"totalDeviceCount":0,"enabledDeviceCount":0,"disabledDeviceCount":0}' @@ -4803,7 +7171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:38 GMT + - Sun, 14 Jun 2020 17:56:34 GMT expires: - '-1' pragma: @@ -4835,12 +7203,12 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -4850,7 +7218,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:31:40 GMT + - Sun, 14 Jun 2020 17:56:34 GMT expires: - '-1' pragma: @@ -4880,12 +7248,12 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -4898,7 +7266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:40 GMT + - Sun, 14 Jun 2020 17:56:35 GMT expires: - '-1' pragma: @@ -4914,7 +7282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -4932,25 +7300,25 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '1803' + - '1865' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:41 GMT + - Sun, 14 Jun 2020 17:56:35 GMT expires: - '-1' pragma: @@ -4969,11 +7337,11 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdodw=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDpsIA=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": @@ -4998,27 +7366,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdodw=''}' + - '{''IF-MATCH'': ''AAAAABDpsIA=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdodw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:30:32 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:30:32 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:30:32 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:30:32 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:30:32 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:30:32 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:30:32 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:30:32 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjFlOWMyODItNjdmNC00Mzc5LTg2MzgtODZkMDRlZWFhODc5?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA0MmJkOGMtNDM3MC00NDY5LTg2ZWMtYzA4NjI4ZjhlMTEw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -5026,7 +7394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:31:47 GMT + - Sun, 14 Jun 2020 17:56:37 GMT expires: - '-1' pragma: @@ -5038,7 +7406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4997' + - '4999' status: code: 201 message: Created @@ -5056,10 +7424,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjFlOWMyODItNjdmNC00Mzc5LTg2MzgtODZkMDRlZWFhODc5?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA0MmJkOGMtNDM3MC00NDY5LTg2ZWMtYzA4NjI4ZjhlMTEw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5071,7 +7439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:19 GMT + - Sun, 14 Jun 2020 17:57:08 GMT expires: - '-1' pragma: @@ -5103,23 +7471,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:21 GMT + - Sun, 14 Jun 2020 17:57:08 GMT expires: - '-1' pragma: @@ -5151,12 +7519,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -5166,7 +7534,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:32:22 GMT + - Sun, 14 Jun 2020 17:57:10 GMT expires: - '-1' pragma: @@ -5196,12 +7564,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5214,7 +7582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:24 GMT + - Sun, 14 Jun 2020 17:57:11 GMT expires: - '-1' pragma: @@ -5230,7 +7598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -5248,25 +7616,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:25 GMT + - Sun, 14 Jun 2020 17:57:11 GMT expires: - '-1' pragma: @@ -5298,12 +7666,12 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -5313,7 +7681,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:32:35 GMT + - Sun, 14 Jun 2020 17:57:11 GMT expires: - '-1' pragma: @@ -5343,12 +7711,12 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5361,7 +7729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:37 GMT + - Sun, 14 Jun 2020 17:57:12 GMT expires: - '-1' pragma: @@ -5377,7 +7745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 200 message: OK @@ -5395,25 +7763,25 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:38 GMT + - Sun, 14 Jun 2020 17:57:12 GMT expires: - '-1' pragma: @@ -5445,12 +7813,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -5460,7 +7828,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:32:38 GMT + - Sun, 14 Jun 2020 17:57:13 GMT expires: - '-1' pragma: @@ -5490,12 +7858,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5508,7 +7876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:46 GMT + - Sun, 14 Jun 2020 17:57:13 GMT expires: - '-1' pragma: @@ -5524,7 +7892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 200 message: OK @@ -5542,25 +7910,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:47 GMT + - Sun, 14 Jun 2020 17:57:13 GMT expires: - '-1' pragma: @@ -5592,12 +7960,12 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -5607,7 +7975,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:32:50 GMT + - Sun, 14 Jun 2020 17:57:14 GMT expires: - '-1' pragma: @@ -5637,12 +8005,12 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5655,7 +8023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:50 GMT + - Sun, 14 Jun 2020 17:57:15 GMT expires: - '-1' pragma: @@ -5671,7 +8039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -5689,25 +8057,25 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '2268' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:51 GMT + - Sun, 14 Jun 2020 17:57:15 GMT expires: - '-1' pragma: @@ -5726,14 +8094,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdovs=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqHyA=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -5756,31 +8125,31 @@ interactions: Connection: - keep-alive Content-Length: - - '2044' + - '2090' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdovs=''}' + - '{''IF-MATCH'': ''AAAAABDqHyA=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdovs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:31:55 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:31:55 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:31:55 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:31:55 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:31:55 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:31:55 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:31:55 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:31:55 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzgzZjdkMjItZWRlZS00MGM4LWJjODAtM2E4MmVlZjIzOTU2?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzM5ZGIxNWMtNDg2OC00ZWY0LWIyYzUtZWVkYjIzYmVjOTA4?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -5788,7 +8157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:32:56 GMT + - Sun, 14 Jun 2020 17:57:19 GMT expires: - '-1' pragma: @@ -5800,7 +8169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4996' + - '4999' status: code: 201 message: Created @@ -5818,10 +8187,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzgzZjdkMjItZWRlZS00MGM4LWJjODAtM2E4MmVlZjIzOTU2?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzM5ZGIxNWMtNDg2OC00ZWY0LWIyYzUtZWVkYjIzYmVjOTA4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5833,7 +8202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:33:29 GMT + - Sun, 14 Jun 2020 17:57:49 GMT expires: - '-1' pragma: @@ -5865,23 +8234,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdo+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2738' + - '2800' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:33:30 GMT + - Sun, 14 Jun 2020 17:57:49 GMT expires: - '-1' pragma: @@ -5913,12 +8282,12 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -5928,7 +8297,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:33:33 GMT + - Sun, 14 Jun 2020 17:57:51 GMT expires: - '-1' pragma: @@ -5958,12 +8327,12 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5976,7 +8345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:33:35 GMT + - Sun, 14 Jun 2020 17:57:51 GMT expires: - '-1' pragma: @@ -5992,7 +8361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -6010,25 +8379,25 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdo+8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2738' + - '2800' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:33:36 GMT + - Sun, 14 Jun 2020 17:57:52 GMT expires: - '-1' pragma: @@ -6047,14 +8416,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdo+8=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqNS8=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": - "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": @@ -6079,31 +8449,31 @@ interactions: Connection: - keep-alive Content-Length: - - '2075' + - '2167' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdo+8=''}' + - '{''IF-MATCH'': ''AAAAABDqNS8=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdo+8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:33:04 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:33:04 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:33:04 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:33:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:33:04 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:33:04 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:33:04 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:33:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzU5NDI5YjAtODVkNi00M2E4LTkyNTEtZGJiMDE4ZDBlYzFk?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -6111,7 +8481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:33:41 GMT + - Sun, 14 Jun 2020 17:57:54 GMT expires: - '-1' pragma: @@ -6123,7 +8493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4995' + - '4999' status: code: 201 message: Created @@ -6141,10 +8511,57 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 14 Jun 2020 17:58: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s --en -c -e + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzU5NDI5YjAtODVkNi00M2E4LTkyNTEtZGJiMDE4ZDBlYzFk?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6156,7 +8573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:13 GMT + - Sun, 14 Jun 2020 17:58:55 GMT expires: - '-1' pragma: @@ -6188,23 +8605,23 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:14 GMT + - Sun, 14 Jun 2020 17:58:56 GMT expires: - '-1' pragma: @@ -6236,12 +8653,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -6251,7 +8668,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:34:37 GMT + - Sun, 14 Jun 2020 17:58:57 GMT expires: - '-1' pragma: @@ -6281,12 +8698,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6299,7 +8716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:39 GMT + - Sun, 14 Jun 2020 17:58:57 GMT expires: - '-1' pragma: @@ -6315,7 +8732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -6333,25 +8750,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:40 GMT + - Sun, 14 Jun 2020 17:58:58 GMT expires: - '-1' pragma: @@ -6383,12 +8800,12 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -6398,7 +8815,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:34:41 GMT + - Sun, 14 Jun 2020 17:58:58 GMT expires: - '-1' pragma: @@ -6428,12 +8845,12 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6446,7 +8863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:41 GMT + - Sun, 14 Jun 2020 17:58:59 GMT expires: - '-1' pragma: @@ -6462,7 +8879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -6480,25 +8897,25 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:42 GMT + - Sun, 14 Jun 2020 17:58:59 GMT expires: - '-1' pragma: @@ -6530,12 +8947,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -6545,7 +8962,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:34:43 GMT + - Sun, 14 Jun 2020 17:59:00 GMT expires: - '-1' pragma: @@ -6575,12 +8992,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6593,7 +9010,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:48 GMT + - Sun, 14 Jun 2020 17:59:01 GMT expires: - '-1' pragma: @@ -6609,7 +9026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6627,25 +9044,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:48 GMT + - Sun, 14 Jun 2020 17:59:01 GMT expires: - '-1' pragma: @@ -6677,12 +9094,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -6692,7 +9109,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:34:51 GMT + - Sun, 14 Jun 2020 17:59:02 GMT expires: - '-1' pragma: @@ -6722,12 +9139,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6740,7 +9157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:52 GMT + - Sun, 14 Jun 2020 17:59:02 GMT expires: - '-1' pragma: @@ -6756,7 +9173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' status: code: 200 message: OK @@ -6774,25 +9191,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:54 GMT + - Sun, 14 Jun 2020 17:59:03 GMT expires: - '-1' pragma: @@ -6829,12 +9246,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testnew?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testnew?api-version=2020-03-01 response: body: string: '{"result":"true"}' @@ -6846,7 +9263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:55 GMT + - Sun, 14 Jun 2020 17:59:03 GMT expires: - '-1' pragma: @@ -6862,7 +9279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' status: code: 200 message: OK @@ -6884,12 +9301,12 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testall?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testall?api-version=2020-03-01 response: body: string: '{"routes":[{"properties":{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}}]}' @@ -6901,7 +9318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:34:57 GMT + - Sun, 14 Jun 2020 17:59:04 GMT expires: - '-1' pragma: @@ -6917,7 +9334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -6935,12 +9352,12 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -6950,7 +9367,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:34:59 GMT + - Sun, 14 Jun 2020 17:59:04 GMT expires: - '-1' pragma: @@ -6980,12 +9397,12 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6998,7 +9415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:00 GMT + - Sun, 14 Jun 2020 17:59:04 GMT expires: - '-1' pragma: @@ -7014,7 +9431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -7032,25 +9449,25 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2844' + - '2906' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:01 GMT + - Sun, 14 Jun 2020 17:59:05 GMT expires: - '-1' pragma: @@ -7069,14 +9486,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdpQE=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqYVs=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": - "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": @@ -7101,31 +9519,31 @@ interactions: Connection: - keep-alive Content-Length: - - '2077' + - '2169' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdpQE=''}' + - '{''IF-MATCH'': ''AAAAABDqYVs=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpQE=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:34:10 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:34:10 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:34:10 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:34:10 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:34:10 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:34:10 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:34:10 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:34:10 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGQ3MzljMmEtNzhjMi00NGVmLWI4MjktMWRmOGQ0ZGFjZGUx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Q5YjRiYTEtOTIxYi00MWJmLTk1ZWMtNzBmOWM0ZjIxZTc0?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -7133,7 +9551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:09 GMT + - Sun, 14 Jun 2020 17:59:07 GMT expires: - '-1' pragma: @@ -7163,10 +9581,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGQ3MzljMmEtNzhjMi00NGVmLWI4MjktMWRmOGQ0ZGFjZGUx?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Q5YjRiYTEtOTIxYi00MWJmLTk1ZWMtNzBmOWM0ZjIxZTc0?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7178,7 +9596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:39 GMT + - Sun, 14 Jun 2020 17:59:39 GMT expires: - '-1' pragma: @@ -7210,23 +9628,23 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpf4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2846' + - '2908' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:40 GMT + - Sun, 14 Jun 2020 17:59:39 GMT expires: - '-1' pragma: @@ -7258,12 +9676,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -7273,7 +9691,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:35:42 GMT + - Sun, 14 Jun 2020 17:59:40 GMT expires: - '-1' pragma: @@ -7303,12 +9721,12 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7321,7 +9739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:43 GMT + - Sun, 14 Jun 2020 17:59:41 GMT expires: - '-1' pragma: @@ -7337,7 +9755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -7355,25 +9773,25 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpf4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2846' + - '2908' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:43 GMT + - Sun, 14 Jun 2020 17:59:42 GMT expires: - '-1' pragma: @@ -7392,14 +9810,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdpf4=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqYcY=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": - "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -7422,31 +9841,31 @@ interactions: Connection: - keep-alive Content-Length: - - '1960' + - '2052' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdpf4=''}' + - '{''IF-MATCH'': ''AAAAABDqYcY=''}' ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpf4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:17 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:17 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:17 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:17 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:17 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:17 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:17 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:17 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=ykFHBJnECrrGSqdxY5I/MuBRDl1jtaEnK916V0LJARk=;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTgwODViY2QtZDU2Zi00YzU0LTliNTctNjU2N2U4N2E3MTFl?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwYTllYzctZjU3Zi00N2VhLWE5NTgtMDY0NTk0YTBhY2Ux?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -7454,7 +9873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:35:49 GMT + - Sun, 14 Jun 2020 17:59:44 GMT expires: - '-1' pragma: @@ -7466,7 +9885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -7484,10 +9903,10 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTgwODViY2QtZDU2Zi00YzU0LTliNTctNjU2N2U4N2E3MTFl?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwYTllYzctZjU3Zi00N2VhLWE5NTgtMDY0NTk0YTBhY2Ux?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7499,7 +9918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:36:21 GMT + - Sun, 14 Jun 2020 18:00:15 GMT expires: - '-1' pragma: @@ -7531,23 +9950,23 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpnE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2738' + - '2800' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:36:22 GMT + - Sun, 14 Jun 2020 18:00:15 GMT expires: - '-1' pragma: @@ -7579,12 +9998,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -7594,7 +10013,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:36:25 GMT + - Sun, 14 Jun 2020 18:00:17 GMT expires: - '-1' pragma: @@ -7624,12 +10043,12 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7642,7 +10061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:36:26 GMT + - Sun, 14 Jun 2020 18:00:17 GMT expires: - '-1' pragma: @@ -7658,7 +10077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7676,25 +10095,25 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpnE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"6214c4e9-3495-400b-9707-6d80ba0e85df","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2738' + - '2800' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:36:27 GMT + - Sun, 14 Jun 2020 18:00:18 GMT expires: - '-1' pragma: @@ -7713,12 +10132,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAAxdpnE=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqblE=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": - "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -7741,31 +10160,31 @@ interactions: Connection: - keep-alive Content-Length: - - '1594' + - '1640' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAAxdpnE=''}' + - '{''IF-MATCH'': ''AAAAABDqblE=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpnE=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","secondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","secondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"JEl4eDlHT7HCmsAVbYeOCZsCIuduA67snHNC3dq6WdE=","secondaryKey":"iHe4WVXnGS9Wxx/OKHQ4AyxYbyXS6k9wj7BQI2YRx44=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"t2VeDpFzDsZaDM1UagnRrGMbGewW9qbvlSEgeMW9wfI=","secondaryKey":"iqNsHo000g3GQmT4B5hIpSp6mOE9HvCDOL9Vot/lEXI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"RPWLuyXEME2JJ2jl+wKfxU/sD3B2+aSc12ESHaycwkU=","secondaryKey":"CWpqnrF5vh4T5RJ60ap2M6LBni5s1yWowyUeZSIotFY=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-5bfd67cb-bf53-4602-b1bf-a8c87b052039-iothub","PrimaryKey":"35m4/tpyfTh8gBZD/amNFN4V3dl9PUB5xpwaj1qrbtw=","SecondaryKey":"1YGcS1CDOvweX50qgT+oDXWv18YLfv70e73TODTnjWc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:58 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:58 GMT"},{"KeyName":"owner-f4a31e7a-c9c6-4801-811c-55bd8b3c9c71-iothub","PrimaryKey":"J9txita7kui4tXG2HEWOMus3hePmS+IwGMvQg78+81E=","SecondaryKey":"ChkQbBXkhs5gnZJlkFzYbB6i18hbkn4NHa4SP0RRGVw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:58 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:58 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"X4KrjhyS5W/qlVfii3bU1IVJtun+1qEFqfm89pzxYGM=","SecondaryKey":"ru3iR5SZPE0M9dD+Lmrmr7UiPS4R8yocMOtACkPz1Wc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:58 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:58 GMT"},{"KeyName":"service","PrimaryKey":"FI7+fcLt9aCgD8/b4R+BwpwGXBk0I0jlLexGCBZhxwU=","SecondaryKey":"g659YrWyfOUttxNI2lkWqH5Vz/eTfF9guHSRCtE4y7Y=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, - 28 Mar 2020 06:35:58 GMT","ModifiedTime":"Sat, 28 Mar 2020 06:35:58 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, + 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzFkODhkMjctODQwMS00MzgwLTg2NzUtM2IwM2Y0Yzc3YzQz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNjOTg1M2EtYjA2My00MjE3LTg4OWEtYWM3MjI2Y2U3MThl?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -7773,7 +10192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:36:34 GMT + - Sun, 14 Jun 2020 18:00:21 GMT expires: - '-1' pragma: @@ -7803,10 +10222,10 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzFkODhkMjctODQwMS00MzgwLTg2NzUtM2IwM2Y0Yzc3YzQz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNjOTg1M2EtYjA2My00MjE3LTg4OWEtYWM3MjI2Y2U3MThl?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7818,7 +10237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:07 GMT + - Sun, 14 Jun 2020 18:00:51 GMT expires: - '-1' pragma: @@ -7850,23 +10269,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqkUA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2335' + - '2397' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:08 GMT + - Sun, 14 Jun 2020 18:00:52 GMT expires: - '-1' pragma: @@ -7898,12 +10317,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -7913,7 +10332,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:37:09 GMT + - Sun, 14 Jun 2020 18:00:53 GMT expires: - '-1' pragma: @@ -7943,12 +10362,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7961,7 +10380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:13 GMT + - Sun, 14 Jun 2020 18:00:54 GMT expires: - '-1' pragma: @@ -7977,7 +10396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1199' status: code: 200 message: OK @@ -7995,25 +10414,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdpt8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-b990311e16.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqkUA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2335' + - '2397' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:15 GMT + - Sun, 14 Jun 2020 18:00:54 GMT expires: - '-1' pragma: @@ -8049,18 +10468,18 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/failover?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/failover?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8068,11 +10487,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:17 GMT + - Sun, 14 Jun 2020 18:00:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -8082,7 +10501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1198' status: code: 202 message: Accepted @@ -8100,10 +10519,57 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 14 Jun 2020 18:01: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8115,7 +10581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:37:38 GMT + - Sun, 14 Jun 2020 18:01:42 GMT expires: - '-1' pragma: @@ -8147,10 +10613,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8162,7 +10628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:38:09 GMT + - Sun, 14 Jun 2020 18:02:12 GMT expires: - '-1' pragma: @@ -8194,10 +10660,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8209,7 +10675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:38:38 GMT + - Sun, 14 Jun 2020 18:02:43 GMT expires: - '-1' pragma: @@ -8241,10 +10707,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8256,7 +10722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:39:10 GMT + - Sun, 14 Jun 2020 18:03:13 GMT expires: - '-1' pragma: @@ -8288,10 +10754,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8303,7 +10769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:39:41 GMT + - Sun, 14 Jun 2020 18:03:43 GMT expires: - '-1' pragma: @@ -8335,10 +10801,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8350,7 +10816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:40:11 GMT + - Sun, 14 Jun 2020 18:04:14 GMT expires: - '-1' pragma: @@ -8382,10 +10848,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8397,7 +10863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:40:42 GMT + - Sun, 14 Jun 2020 18:04:44 GMT expires: - '-1' pragma: @@ -8429,10 +10895,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8444,7 +10910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:41:12 GMT + - Sun, 14 Jun 2020 18:05:15 GMT expires: - '-1' pragma: @@ -8476,10 +10942,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8491,7 +10957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:41:44 GMT + - Sun, 14 Jun 2020 18:05:44 GMT expires: - '-1' pragma: @@ -8523,10 +10989,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8538,7 +11004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:42:14 GMT + - Sun, 14 Jun 2020 18:06:15 GMT expires: - '-1' pragma: @@ -8570,10 +11036,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8585,7 +11051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:42:45 GMT + - Sun, 14 Jun 2020 18:06:45 GMT expires: - '-1' pragma: @@ -8617,10 +11083,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8632,7 +11098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:43:16 GMT + - Sun, 14 Jun 2020 18:07:15 GMT expires: - '-1' pragma: @@ -8664,10 +11130,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8679,7 +11145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:43:46 GMT + - Sun, 14 Jun 2020 18:07:46 GMT expires: - '-1' pragma: @@ -8711,10 +11177,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8726,7 +11192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:44:17 GMT + - Sun, 14 Jun 2020 18:08:16 GMT expires: - '-1' pragma: @@ -8758,10 +11224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8773,7 +11239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:44:48 GMT + - Sun, 14 Jun 2020 18:08:46 GMT expires: - '-1' pragma: @@ -8805,10 +11271,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8820,7 +11286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:18 GMT + - Sun, 14 Jun 2020 18:09:17 GMT expires: - '-1' pragma: @@ -8852,10 +11318,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGM2N2VjYzMtZjMzOC00YmM5LWFmMmItODMzMzdjNDgwNjcz?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8867,7 +11333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:48 GMT + - Sun, 14 Jun 2020 18:09:47 GMT expires: - '-1' pragma: @@ -8899,12 +11365,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: string: '' @@ -8914,7 +11380,7 @@ interactions: content-length: - '0' date: - - Sat, 28 Mar 2020 06:45:50 GMT + - Sun, 14 Jun 2020 18:09:48 GMT expires: - '-1' pragma: @@ -8944,12 +11410,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8962,7 +11428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:51 GMT + - Sun, 14 Jun 2020 18:09:48 GMT expires: - '-1' pragma: @@ -8978,7 +11444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -8996,25 +11462,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdsB0=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-c889a3d713.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDrv2Q=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-e952c69e6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '2335' + - '2397' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:53 GMT + - Sun, 14 Jun 2020 18:09:48 GMT expires: - '-1' pragma: @@ -9046,25 +11512,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAAxdsB0=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3155012-c889a3d713.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"41ee2fa8-ac06-4cae-a39a-70b40285b868","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' - headers: - cache-control: - - no-cache + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDrv2Q=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-e952c69e6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '2347' + - '142308' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:55 GMT + - Sun, 14 Jun 2020 18:09:59 GMT expires: - '-1' pragma: @@ -9098,18 +11668,18 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWM0MjU5NmEtM2ZlYi00OWUxLWExOWMtNjIzNDQ5YzZlODdh?api-version=2019-03-22&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -9117,11 +11687,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:45:57 GMT + - Sun, 14 Jun 2020 18:10:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWM0MjU5NmEtM2ZlYi00OWUxLWExOWMtNjIzNDQ5YzZlODdh?api-version=2019-03-22&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -9149,10 +11719,10 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-iothub/0.11.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWM0MjU5NmEtM2ZlYi00OWUxLWExOWMtNjIzNDQ5YzZlODdh?api-version=2019-03-22&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9164,7 +11734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Mar 2020 06:46:13 GMT + - Sun, 14 Jun 2020 18:10:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/test_iot_commands.py b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/test_iot_commands.py index b87c2e06447..d0889f756c3 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/test_iot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/test_iot_commands.py @@ -182,18 +182,6 @@ def test_iot_hub(self, resource_group, resource_group_location, storage_account) self.check('[0].name', '$Default') ]) - # Test 'az iot hub job list' - self.cmd('iot hub job list --hub-name {0}'.format(hub), checks=self.is_empty()) - - # Test 'az iot hub job show' - job_id = 'fake-job' - self.cmd('iot hub job show --hub-name {0} --job-id {1}'.format(hub, job_id), - expect_failure=True) - - # Test 'az iot hub job cancel' - self.cmd('iot hub job cancel --hub-name {0} --job-id {1}'.format(hub, job_id), - expect_failure=True) - # Test 'az iot hub show-quota-metrics' self.cmd('iot hub show-quota-metrics -n {0}'.format(hub), checks=[ self.check('length([*])', 2), diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_identity_hub.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_identity_hub.yaml index 0319671386d..2fa9f79b55c 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_identity_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_identity_hub.yaml @@ -13,26 +13,26 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold/providers/Microsoft.Storage/storageAccounts/harold","name":"harold","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-29T13:11:16.4123336Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-29T13:11:16.4123336Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-29T13:11:16.3342268Z","primaryEndpoints":{"dfs":"https://harold.dfs.core.windows.net/","web":"https://harold.z13.web.core.windows.net/","blob":"https://harold.blob.core.windows.net/","queue":"https://harold.queue.core.windows.net/","table":"https://harold.table.core.windows.net/","file":"https://harold.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://harold-secondary.dfs.core.windows.net/","web":"https://harold-secondary.z13.web.core.windows.net/","blob":"https://harold-secondary.blob.core.windows.net/","queue":"https://harold-secondary.queue.core.windows.net/","table":"https://harold-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing","name":"zhoxing","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T08:53:45.4310180Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T08:53:45.4310180Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T08:53:45.3528671Z","primaryEndpoints":{"dfs":"https://zhoxing.dfs.core.windows.net/","web":"https://zhoxing.z13.web.core.windows.net/","blob":"https://zhoxing.blob.core.windows.net/","queue":"https://zhoxing.queue.core.windows.net/","table":"https://zhoxing.table.core.windows.net/","file":"https://zhoxing.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhoxing-secondary.dfs.core.windows.net/","web":"https://zhoxing-secondary.z13.web.core.windows.net/","blob":"https://zhoxing-secondary.blob.core.windows.net/","queue":"https://zhoxing-secondary.queue.core.windows.net/","table":"https://zhoxing-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-14T12:05:01.5230050Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-14T12:05:01.5230050Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-14T12:05:01.4448881Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z20.web.core.windows.net/","blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/tsiext","name":"tsiext","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T04:42:27.8695098Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T04:42:27.8695098Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-16T04:42:27.8070104Z","primaryEndpoints":{"dfs":"https://tsiext.dfs.core.windows.net/","web":"https://tsiext.z20.web.core.windows.net/","blob":"https://tsiext.blob.core.windows.net/","queue":"https://tsiext.queue.core.windows.net/","table":"https://tsiext.table.core.windows.net/","file":"https://tsiext.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851","name":"azhoxingtest9851","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca"},"properties":{"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851/privateEndpointConnections/azhoxingtest9851.6911cd49-cfc1-4bcf-887b-6941ff2b8756","name":"azhoxingtest9851.6911cd49-cfc1-4bcf-887b-6941ff2b8756","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T05:43:15.2029670Z","primaryEndpoints":{"dfs":"https://azhoxingtest9851.dfs.core.windows.net/","web":"https://azhoxingtest9851.z22.web.core.windows.net/","blob":"https://azhoxingtest9851.blob.core.windows.net/","queue":"https://azhoxingtest9851.queue.core.windows.net/","table":"https://azhoxingtest9851.table.core.windows.net/","file":"https://azhoxingtest9851.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T06:53:12.9857979Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T06:53:12.9857979Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-20T06:53:12.9076523Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-my-standard-space-fez3hbt1bsvmr/providers/Microsoft.Storage/storageAccounts/dbstoragefez3hbt1bsvmr","name":"dbstoragefez3hbt1bsvmr","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T03:14:00.7197710Z","primaryEndpoints":{"dfs":"https://dbstoragefez3hbt1bsvmr.dfs.core.windows.net/","blob":"https://dbstoragefez3hbt1bsvmr.blob.core.windows.net/","table":"https://dbstoragefez3hbt1bsvmr.table.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengws1storage296335f3c7","name":"fengws1storage296335f3c7","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-14T14:41:02.1600089Z","primaryEndpoints":{"dfs":"https://fengws1storage296335f3c7.dfs.core.windows.net/","web":"https://fengws1storage296335f3c7.z7.web.core.windows.net/","blob":"https://fengws1storage296335f3c7.blob.core.windows.net/","queue":"https://fengws1storage296335f3c7.queue.core.windows.net/","table":"https://fengws1storage296335f3c7.table.core.windows.net/","file":"https://fengws1storage296335f3c7.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaojianxu/providers/Microsoft.Storage/storageAccounts/xiaojianxudiag962","name":"xiaojianxudiag962","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T03:13:30.6753224Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T03:13:30.6753224Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T03:13:30.6285007Z","primaryEndpoints":{"blob":"https://xiaojianxudiag962.blob.core.windows.net/","queue":"https://xiaojianxudiag962.queue.core.windows.net/","table":"https://xiaojianxudiag962.table.core.windows.net/","file":"https://xiaojianxudiag962.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T07:15:45.7422455Z","primaryEndpoints":{"dfs":"https://jlcsst.dfs.core.windows.net/","web":"https://jlcsst.z23.web.core.windows.net/","blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlvm2rg/providers/Microsoft.Storage/storageAccounts/jlvm2rgdiag","name":"jlvm2rgdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T04:41:48.6505931Z","primaryEndpoints":{"blob":"https://jlvm2rgdiag.blob.core.windows.net/","queue":"https://jlvm2rgdiag.queue.core.windows.net/","table":"https://jlvm2rgdiag.table.core.windows.net/","file":"https://jlvm2rgdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimrgdiag","name":"bimrgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T15:04:32.0706109Z","primaryEndpoints":{"blob":"https://bimrgdiag.blob.core.windows.net/","queue":"https://bimrgdiag.queue.core.windows.net/","table":"https://bimrgdiag.table.core.windows.net/","file":"https://bimrgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengclirgdiag","name":"fengclirgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-01T07:10:19.9974827Z","primaryEndpoints":{"blob":"https://fengclirgdiag.blob.core.windows.net/","queue":"https://fengclirgdiag.queue.core.windows.net/","table":"https://fengclirgdiag.table.core.windows.net/","file":"https://fengclirgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o","name":"store6472qnxl3vv5o","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"project":"Digital - Platform","env":"CI"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T08:24:34.6453999Z","primaryEndpoints":{"blob":"https://store6472qnxl3vv5o.blob.core.windows.net/","queue":"https://store6472qnxl3vv5o.queue.core.windows.net/","table":"https://store6472qnxl3vv5o.table.core.windows.net/","file":"https://store6472qnxl3vv5o.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-bimdatabricks-poumgta45nleo/providers/Microsoft.Storage/storageAccounts/dbstoragei4eqatrzykddu","name":"dbstoragei4eqatrzykddu","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T03:37:56.9362632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T03:37:56.9362632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T03:37:56.8425143Z","primaryEndpoints":{"dfs":"https://dbstoragei4eqatrzykddu.dfs.core.windows.net/","blob":"https://dbstoragei4eqatrzykddu.blob.core.windows.net/","table":"https://dbstoragei4eqatrzykddu.table.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/idgdiag6472qnxl3vv5o","name":"idgdiag6472qnxl3vv5o","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T08:53:11.2645207Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T08:53:11.2645207Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-03T08:53:11.1707355Z","primaryEndpoints":{"dfs":"https://idgdiag6472qnxl3vv5o.dfs.core.windows.net/","web":"https://idgdiag6472qnxl3vv5o.z19.web.core.windows.net/","blob":"https://idgdiag6472qnxl3vv5o.blob.core.windows.net/","queue":"https://idgdiag6472qnxl3vv5o.queue.core.windows.net/","table":"https://idgdiag6472qnxl3vv5o.table.core.windows.net/","file":"https://idgdiag6472qnxl3vv5o.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrg8277","name":"storageaccountbimrg8277","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-11T08:59:39.9591906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-11T08:59:39.9591906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-11T08:59:39.8810735Z","primaryEndpoints":{"blob":"https://storageaccountbimrg8277.blob.core.windows.net/","queue":"https://storageaccountbimrg8277.queue.core.windows.net/","table":"https://storageaccountbimrg8277.table.core.windows.net/","file":"https://storageaccountbimrg8277.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrg83e4","name":"storageaccountbimrg83e4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T06:39:23.8091026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T06:39:23.8091026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T06:39:23.7153914Z","primaryEndpoints":{"blob":"https://storageaccountbimrg83e4.blob.core.windows.net/","queue":"https://storageaccountbimrg83e4.queue.core.windows.net/","table":"https://storageaccountbimrg83e4.table.core.windows.net/","file":"https://storageaccountbimrg83e4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg-function/providers/Microsoft.Storage/storageAccounts/storageaccountbimrg9eb7","name":"storageaccountbimrg9eb7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T07:12:06.5485336Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T07:12:06.5485336Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T07:12:06.4547831Z","primaryEndpoints":{"blob":"https://storageaccountbimrg9eb7.blob.core.windows.net/","queue":"https://storageaccountbimrg9eb7.queue.core.windows.net/","table":"https://storageaccountbimrg9eb7.table.core.windows.net/","file":"https://storageaccountbimrg9eb7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/storageaccountbimrga78a","name":"storageaccountbimrga78a","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-11T08:52:23.3776162Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-11T08:52:23.3776162Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-11T08:52:23.2838874Z","primaryEndpoints":{"blob":"https://storageaccountbimrga78a.blob.core.windows.net/","queue":"https://storageaccountbimrga78a.queue.core.windows.net/","table":"https://storageaccountbimrga78a.table.core.windows.net/","file":"https://storageaccountbimrga78a.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg-function/providers/Microsoft.Storage/storageAccounts/storageaccountbimrgb117","name":"storageaccountbimrgb117","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T07:36:43.2037375Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-12T07:36:43.2037375Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-12T07:36:43.1099658Z","primaryEndpoints":{"blob":"https://storageaccountbimrgb117.blob.core.windows.net/","queue":"https://storageaccountbimrgb117.queue.core.windows.net/","table":"https://storageaccountbimrgb117.table.core.windows.net/","file":"https://storageaccountbimrgb117.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8","name":"storageaccountzhoxib2a8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T06:54:03.9044955Z","primaryEndpoints":{"blob":"https://storageaccountzhoxib2a8.blob.core.windows.net/","queue":"https://storageaccountzhoxib2a8.queue.core.windows.net/","table":"https://storageaccountzhoxib2a8.table.core.windows.net/","file":"https://storageaccountzhoxib2a8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/storageaccountzuh8291","name":"storageaccountzuh8291","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-09T03:03:44.3815596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-09T03:03:44.3815596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-09T03:03:44.3034449Z","primaryEndpoints":{"blob":"https://storageaccountzuh8291.blob.core.windows.net/","queue":"https://storageaccountzuh8291.queue.core.windows.net/","table":"https://storageaccountzuh8291.table.core.windows.net/","file":"https://storageaccountzuh8291.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxing2","name":"zhoxing2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T06:54:17.8037418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T06:54:17.8037418Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-21T06:54:17.7099423Z","primaryEndpoints":{"dfs":"https://zhoxing2.dfs.core.windows.net/","web":"https://zhoxing2.z19.web.core.windows.net/","blob":"https://zhoxing2.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest","name":"zhoxingtest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-20T09:01:14.2087269Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-20T09:01:14.2087269Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-20T09:01:14.1462280Z","primaryEndpoints":{"dfs":"https://zhoxingtest.dfs.core.windows.net/","web":"https://zhoxingtest.z19.web.core.windows.net/","blob":"https://zhoxingtest.blob.core.windows.net/","queue":"https://zhoxingtest.queue.core.windows.net/","table":"https://zhoxingtest.table.core.windows.net/","file":"https://zhoxingtest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhoxingtest-secondary.dfs.core.windows.net/","web":"https://zhoxingtest-secondary.z19.web.core.windows.net/","blob":"https://zhoxingtest-secondary.blob.core.windows.net/","queue":"https://zhoxingtest-secondary.queue.core.windows.net/","table":"https://zhoxingtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2","name":"zhoxingtest2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T06:52:39.2007383Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T06:52:39.2007383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-21T06:52:39.1039700Z","primaryEndpoints":{"dfs":"https://zhoxingtest2.dfs.core.windows.net/","web":"https://zhoxingtest2.z19.web.core.windows.net/","blob":"https://zhoxingtest2.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Storage/storageAccounts/zuhstorage","name":"zuhstorage","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"mic_owner":"hidden-link: - ALMOAYA","mic_department":"RD/UVC","mic_stage":"testece","mic_project":"true"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T06:04:55.6167450Z","primaryEndpoints":{"dfs":"https://zuhstorage.dfs.core.windows.net/","web":"https://zuhstorage.z19.web.core.windows.net/","blob":"https://zuhstorage.blob.core.windows.net/","queue":"https://zuhstorage.queue.core.windows.net/","table":"https://zuhstorage.table.core.windows.net/","file":"https://zuhstorage.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhstorage-secondary.dfs.core.windows.net/","web":"https://zuhstorage-secondary.z19.web.core.windows.net/","blob":"https://zuhstorage-secondary.blob.core.windows.net/","queue":"https://zuhstorage-secondary.queue.core.windows.net/","table":"https://zuhstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengwsstorage28dfde17cb1","name":"fengwsstorage28dfde17cb1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T04:11:42.1857797Z","primaryEndpoints":{"dfs":"https://fengwsstorage28dfde17cb1.dfs.core.windows.net/","web":"https://fengwsstorage28dfde17cb1.z5.web.core.windows.net/","blob":"https://fengwsstorage28dfde17cb1.blob.core.windows.net/","queue":"https://fengwsstorage28dfde17cb1.queue.core.windows.net/","table":"https://fengwsstorage28dfde17cb1.table.core.windows.net/","file":"https://fengwsstorage28dfde17cb1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/storeayniadjso4lay","name":"storeayniadjso4lay","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-30T02:20:25.4421217Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-30T02:20:25.4421217Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-30T02:20:25.3796651Z","primaryEndpoints":{"dfs":"https://storeayniadjso4lay.dfs.core.windows.net/","web":"https://storeayniadjso4lay.z5.web.core.windows.net/","blob":"https://storeayniadjso4lay.blob.core.windows.net/","queue":"https://storeayniadjso4lay.queue.core.windows.net/","table":"https://storeayniadjso4lay.table.core.windows.net/","file":"https://storeayniadjso4lay.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaojianxu/providers/Microsoft.Storage/storageAccounts/xxjwetus2storage","name":"xxjwetus2storage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T06:26:54.2163538Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T06:26:54.2163538Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-30T06:26:54.1538919Z","primaryEndpoints":{"dfs":"https://xxjwetus2storage.dfs.core.windows.net/","web":"https://xxjwetus2storage.z5.web.core.windows.net/","blob":"https://xxjwetus2storage.blob.core.windows.net/","queue":"https://xxjwetus2storage.queue.core.windows.net/","table":"https://xxjwetus2storage.table.core.windows.net/","file":"https://xxjwetus2storage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://xxjwetus2storage-secondary.dfs.core.windows.net/","web":"https://xxjwetus2storage-secondary.z5.web.core.windows.net/","blob":"https://xxjwetus2storage-secondary.blob.core.windows.net/","queue":"https://xxjwetus2storage-secondary.queue.core.windows.net/","table":"https://xxjwetus2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhgzrs","name":"zuhgzrs","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-27T09:10:08.9349149Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-27T09:10:08.9349149Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-27T09:10:08.8411307Z","primaryEndpoints":{"dfs":"https://zuhgzrs.dfs.core.windows.net/","web":"https://zuhgzrs.z5.web.core.windows.net/","blob":"https://zuhgzrs.blob.core.windows.net/","queue":"https://zuhgzrs.queue.core.windows.net/","table":"https://zuhgzrs.table.core.windows.net/","file":"https://zuhgzrs.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","lastGeoFailoverTime":"2020-04-27T10:24:55.1508885Z"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhgzrs2","name":"zuhgzrs2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-27T09:25:24.5222056Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-27T09:25:24.5222056Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-27T09:25:24.4440713Z","primaryEndpoints":{"dfs":"https://zuhgzrs2.dfs.core.windows.net/","web":"https://zuhgzrs2.z5.web.core.windows.net/","blob":"https://zuhgzrs2.blob.core.windows.net/","queue":"https://zuhgzrs2.queue.core.windows.net/","table":"https://zuhgzrs2.table.core.windows.net/","file":"https://zuhgzrs2.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","lastGeoFailoverTime":"2020-04-27T10:27:53.3569636Z"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimstorageacc","name":"bimstorageacc","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T07:20:55.1858389Z","primaryEndpoints":{"dfs":"https://bimstorageacc.dfs.core.windows.net/","web":"https://bimstorageacc.z4.web.core.windows.net/","blob":"https://bimstorageacc.blob.core.windows.net/","queue":"https://bimstorageacc.queue.core.windows.net/","table":"https://bimstorageacc.table.core.windows.net/","file":"https://bimstorageacc.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://bimstorageacc-secondary.dfs.core.windows.net/","web":"https://bimstorageacc-secondary.z4.web.core.windows.net/","blob":"https://bimstorageacc-secondary.blob.core.windows.net/","queue":"https://bimstorageacc-secondary.queue.core.windows.net/","table":"https://bimstorageacc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/storageextension","name":"storageextension","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T08:44:19.2476281Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T08:44:19.2476281Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-30T08:44:19.2007782Z","primaryEndpoints":{"dfs":"https://storageextension.dfs.core.windows.net/","web":"https://storageextension.z3.web.core.windows.net/","blob":"https://storageextension.blob.core.windows.net/","queue":"https://storageextension.queue.core.windows.net/","table":"https://storageextension.table.core.windows.net/","file":"https://storageextension.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storageextension-secondary.dfs.core.windows.net/","web":"https://storageextension-secondary.z3.web.core.windows.net/","blob":"https://storageextension-secondary.blob.core.windows.net/","queue":"https://storageextension-secondary.queue.core.windows.net/","table":"https://storageextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/storagetest22","name":"storagetest22","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T03:43:07.5284378Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T03:43:07.5284378Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-21T03:43:07.4503168Z","primaryEndpoints":{"dfs":"https://storagetest22.dfs.core.windows.net/","web":"https://storagetest22.z3.web.core.windows.net/","blob":"https://storagetest22.blob.core.windows.net/","queue":"https://storagetest22.queue.core.windows.net/","table":"https://storagetest22.table.core.windows.net/","file":"https://storagetest22.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagetest22-secondary.dfs.core.windows.net/","web":"https://storagetest22-secondary.z3.web.core.windows.net/","blob":"https://storagetest22-secondary.blob.core.windows.net/","queue":"https://storagetest22-secondary.queue.core.windows.net/","table":"https://storagetest22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhadls","name":"zuhadls","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-20T03:10:14.5178215Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-20T03:10:14.5178215Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-20T03:10:14.4709025Z","primaryEndpoints":{"dfs":"https://zuhadls.dfs.core.windows.net/","web":"https://zuhadls.z3.web.core.windows.net/","blob":"https://zuhadls.blob.core.windows.net/","queue":"https://zuhadls.queue.core.windows.net/","table":"https://zuhadls.table.core.windows.net/","file":"https://zuhadls.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhadls-secondary.dfs.core.windows.net/","web":"https://zuhadls-secondary.z3.web.core.windows.net/","blob":"https://zuhadls-secondary.blob.core.windows.net/","queue":"https://zuhadls-secondary.queue.core.windows.net/","table":"https://zuhadls-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"d2e83740-1d90-4aa7-901c-97c510d4f7ec","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://zuhkeyvault.vault.azure.net/keys/zuhkey/2780bea583714f33b8051ea24f90a246","lastKeyRotationTimestamp":"2020-04-09T06:46:21.5968704Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://zuhkeyvault.vault.azure.net/","keyname":"zuhkey","keyversion":"2780bea583714f33b8051ea24f90a246"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T03:16:26.4697374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T03:16:26.4697374Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-30T03:16:26.4228869Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"1b643393-f35b-408e-b50c-2fbef882d353","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhlrs","name":"zuhlrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://zuhkeyvault.vault.azure.net/keys/storagekey/04704263f43241dca0ff99c3794fd8c7","lastKeyRotationTimestamp":"2020-04-15T08:06:44.8059437Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://zuhkeyvault.vault.azure.net/","keyname":"storagekey","keyversion":""},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T01:57:52.8994530Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T01:57:52.8994530Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-18T01:57:52.8369202Z","primaryEndpoints":{"dfs":"https://zuhlrs.dfs.core.windows.net/","web":"https://zuhlrs.z3.web.core.windows.net/","blob":"https://zuhlrs.blob.core.windows.net/","queue":"https://zuhlrs.queue.core.windows.net/","table":"https://zuhlrs.table.core.windows.net/","file":"https://zuhlrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhors","name":"zuhors","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T05:15:21.5112485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-30T05:15:21.5112485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-30T05:15:21.4800200Z","primaryEndpoints":{"dfs":"https://zuhors.dfs.core.windows.net/","web":"https://zuhors.z3.web.core.windows.net/","blob":"https://zuhors.blob.core.windows.net/","queue":"https://zuhors.queue.core.windows.net/","table":"https://zuhors.table.core.windows.net/","file":"https://zuhors.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhors-secondary.dfs.core.windows.net/","web":"https://zuhors-secondary.z3.web.core.windows.net/","blob":"https://zuhors-secondary.blob.core.windows.net/","queue":"https://zuhors-secondary.queue.core.windows.net/","table":"https://zuhors-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest","name":"zuhstoragetest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-20T07:16:48.8761196Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-20T07:16:48.8761196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-20T07:16:48.8448300Z","primaryEndpoints":{"dfs":"https://zuhstoragetest.dfs.core.windows.net/","web":"https://zuhstoragetest.z3.web.core.windows.net/","blob":"https://zuhstoragetest.blob.core.windows.net/","queue":"https://zuhstoragetest.queue.core.windows.net/","table":"https://zuhstoragetest.table.core.windows.net/","file":"https://zuhstoragetest.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","lastGeoFailoverTime":"2020-04-27T09:00:40.7609147Z"}}]}' + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/aprilpnpbugbash","name":"aprilpnpbugbash","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T01:56:00.5610388Z","primaryEndpoints":{"dfs":"https://aprilpnpbugbash.dfs.core.windows.net/","web":"https://aprilpnpbugbash.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash.blob.core.windows.net/","queue":"https://aprilpnpbugbash.queue.core.windows.net/","table":"https://aprilpnpbugbash.table.core.windows.net/","file":"https://aprilpnpbugbash.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aprilpnpbugbash-secondary.dfs.core.windows.net/","web":"https://aprilpnpbugbash-secondary.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash-secondary.blob.core.windows.net/","queue":"https://aprilpnpbugbash-secondary.queue.core.windows.net/","table":"https://aprilpnpbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus01","name":"csharpiotuapeastus01","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T21:49:04.0979858Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus01.blob.core.windows.net/","queue":"https://csharpiotuapeastus01.queue.core.windows.net/","table":"https://csharpiotuapeastus01.table.core.windows.net/","file":"https://csharpiotuapeastus01.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag172","name":"mgtlabdiag172","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T00:56:53.3999654Z","primaryEndpoints":{"blob":"https://mgtlabdiag172.blob.core.windows.net/","queue":"https://mgtlabdiag172.queue.core.windows.net/","table":"https://mgtlabdiag172.table.core.windows.net/","file":"https://mgtlabdiag172.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Storage/storageAccounts/sqlimagestore","name":"sqlimagestore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T15:29:06.0354793Z","primaryEndpoints":{"dfs":"https://sqlimagestore.dfs.core.windows.net/","web":"https://sqlimagestore.z13.web.core.windows.net/","blob":"https://sqlimagestore.blob.core.windows.net/","queue":"https://sqlimagestore.queue.core.windows.net/","table":"https://sqlimagestore.table.core.windows.net/","file":"https://sqlimagestore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sqlimagestore-secondary.dfs.core.windows.net/","web":"https://sqlimagestore-secondary.z13.web.core.windows.net/","blob":"https://sqlimagestore-secondary.blob.core.windows.net/","queue":"https://sqlimagestore-secondary.queue.core.windows.net/","table":"https://sqlimagestore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/zadixon","name":"zadixon","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-06T00:29:47.9301744Z","primaryEndpoints":{"dfs":"https://zadixon.dfs.core.windows.net/","web":"https://zadixon.z13.web.core.windows.net/","blob":"https://zadixon.blob.core.windows.net/","queue":"https://zadixon.queue.core.windows.net/","table":"https://zadixon.table.core.windows.net/","file":"https://zadixon.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zadixon-secondary.dfs.core.windows.net/","web":"https://zadixon-secondary.z13.web.core.windows.net/","blob":"https://zadixon-secondary.blob.core.windows.net/","queue":"https://zadixon-secondary.queue.core.windows.net/","table":"https://zadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcrg982788/providers/Microsoft.Storage/storageAccounts/affanbc8902","name":"affanbc8902","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-30T19:24:20.1876978Z","primaryEndpoints":{"blob":"https://affanbc8902.blob.core.windows.net/","queue":"https://affanbc8902.queue.core.windows.net/","table":"https://affanbc8902.table.core.windows.net/","file":"https://affanbc8902.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:09:48.1491805Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:09:48.1491805Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-13T21:09:48.0085098Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000801b6df4","name":"cs410030000801b6df4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T19:06:51.2300069Z","primaryEndpoints":{"dfs":"https://cs410030000801b6df4.dfs.core.windows.net/","web":"https://cs410030000801b6df4.z22.web.core.windows.net/","blob":"https://cs410030000801b6df4.blob.core.windows.net/","queue":"https://cs410030000801b6df4.queue.core.windows.net/","table":"https://cs410030000801b6df4.table.core.windows.net/","file":"https://cs410030000801b6df4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cswestus1003bffda5eca634","name":"cswestus1003bffda5eca634","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T01:37:40.4375181Z","primaryEndpoints":{"dfs":"https://cswestus1003bffda5eca634.dfs.core.windows.net/","web":"https://cswestus1003bffda5eca634.z22.web.core.windows.net/","blob":"https://cswestus1003bffda5eca634.blob.core.windows.net/","queue":"https://cswestus1003bffda5eca634.queue.core.windows.net/","table":"https://cswestus1003bffda5eca634.table.core.windows.net/","file":"https://cswestus1003bffda5eca634.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_c_westus_c_westus/providers/Microsoft.Storage/storageAccounts/f9c418a6510b611ea9b85ae","name":"f9c418a6510b611ea9b85ae","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created-by":"azure"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-27T01:38:30.9156217Z","primaryEndpoints":{"dfs":"https://f9c418a6510b611ea9b85ae.dfs.core.windows.net/","web":"https://f9c418a6510b611ea9b85ae.z22.web.core.windows.net/","blob":"https://f9c418a6510b611ea9b85ae.blob.core.windows.net/","queue":"https://f9c418a6510b611ea9b85ae.queue.core.windows.net/","table":"https://f9c418a6510b611ea9b85ae.table.core.windows.net/","file":"https://f9c418a6510b611ea9b85ae.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-talks-rg/providers/Microsoft.Storage/storageAccounts/gwv2overview","name":"gwv2overview","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-18T19:45:27.2337945Z","primaryEndpoints":{"dfs":"https://gwv2overview.dfs.core.windows.net/","web":"https://gwv2overview.z22.web.core.windows.net/","blob":"https://gwv2overview.blob.core.windows.net/","queue":"https://gwv2overview.queue.core.windows.net/","table":"https://gwv2overview.table.core.windows.net/","file":"https://gwv2overview.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestadministrator","name":"iothubtestadministrator","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-04T01:18:18.5399619Z","primaryEndpoints":{"blob":"https://iothubtestadministrator.blob.core.windows.net/","queue":"https://iothubtestadministrator.queue.core.windows.net/","table":"https://iothubtestadministrator.table.core.windows.net/","file":"https://iothubtestadministrator.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestadministrator-secondary.blob.core.windows.net/","queue":"https://iothubtestadministrator-secondary.queue.core.windows.net/","table":"https://iothubtestadministrator-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen10","name":"iothubtestagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T10:05:13.4246717Z","primaryEndpoints":{"blob":"https://iothubtestagen10.blob.core.windows.net/","queue":"https://iothubtestagen10.queue.core.windows.net/","table":"https://iothubtestagen10.table.core.windows.net/","file":"https://iothubtestagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestagen10-secondary.queue.core.windows.net/","table":"https://iothubtestagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen11","name":"iothubtestagen11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T02:23:10.5102160Z","primaryEndpoints":{"blob":"https://iothubtestagen11.blob.core.windows.net/","queue":"https://iothubtestagen11.queue.core.windows.net/","table":"https://iothubtestagen11.table.core.windows.net/","file":"https://iothubtestagen11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen11-secondary.blob.core.windows.net/","queue":"https://iothubtestagen11-secondary.queue.core.windows.net/","table":"https://iothubtestagen11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen12","name":"iothubtestagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T07:09:07.0627024Z","primaryEndpoints":{"blob":"https://iothubtestagen12.blob.core.windows.net/","queue":"https://iothubtestagen12.queue.core.windows.net/","table":"https://iothubtestagen12.table.core.windows.net/","file":"https://iothubtestagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestagen12-secondary.queue.core.windows.net/","table":"https://iothubtestagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen13","name":"iothubtestagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T22:59:14.9381300Z","primaryEndpoints":{"blob":"https://iothubtestagen13.blob.core.windows.net/","queue":"https://iothubtestagen13.queue.core.windows.net/","table":"https://iothubtestagen13.table.core.windows.net/","file":"https://iothubtestagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestagen13-secondary.queue.core.windows.net/","table":"https://iothubtestagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen14","name":"iothubtestagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T03:17:58.2833024Z","primaryEndpoints":{"blob":"https://iothubtestagen14.blob.core.windows.net/","queue":"https://iothubtestagen14.queue.core.windows.net/","table":"https://iothubtestagen14.table.core.windows.net/","file":"https://iothubtestagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestagen14-secondary.queue.core.windows.net/","table":"https://iothubtestagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen15","name":"iothubtestagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-23T23:31:45.2765000Z","primaryEndpoints":{"blob":"https://iothubtestagen15.blob.core.windows.net/","queue":"https://iothubtestagen15.queue.core.windows.net/","table":"https://iothubtestagen15.table.core.windows.net/","file":"https://iothubtestagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestagen15-secondary.queue.core.windows.net/","table":"https://iothubtestagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent3","name":"iothubtestagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T12:35:10.5203999Z","primaryEndpoints":{"blob":"https://iothubtestagent3.blob.core.windows.net/","queue":"https://iothubtestagent3.queue.core.windows.net/","table":"https://iothubtestagent3.table.core.windows.net/","file":"https://iothubtestagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestagent3-secondary.queue.core.windows.net/","table":"https://iothubtestagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent4","name":"iothubtestagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:17:54.1226653Z","primaryEndpoints":{"blob":"https://iothubtestagent4.blob.core.windows.net/","queue":"https://iothubtestagent4.queue.core.windows.net/","table":"https://iothubtestagent4.table.core.windows.net/","file":"https://iothubtestagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestagent4-secondary.queue.core.windows.net/","table":"https://iothubtestagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent5","name":"iothubtestagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T18:49:31.3039985Z","primaryEndpoints":{"blob":"https://iothubtestagent5.blob.core.windows.net/","queue":"https://iothubtestagent5.queue.core.windows.net/","table":"https://iothubtestagent5.table.core.windows.net/","file":"https://iothubtestagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestagent5-secondary.queue.core.windows.net/","table":"https://iothubtestagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent6","name":"iothubtestagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T20:48:18.6972003Z","primaryEndpoints":{"blob":"https://iothubtestagent6.blob.core.windows.net/","queue":"https://iothubtestagent6.queue.core.windows.net/","table":"https://iothubtestagent6.table.core.windows.net/","file":"https://iothubtestagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestagent6-secondary.queue.core.windows.net/","table":"https://iothubtestagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent7","name":"iothubtestagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T18:13:17.5284420Z","primaryEndpoints":{"blob":"https://iothubtestagent7.blob.core.windows.net/","queue":"https://iothubtestagent7.queue.core.windows.net/","table":"https://iothubtestagent7.table.core.windows.net/","file":"https://iothubtestagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestagent7-secondary.queue.core.windows.net/","table":"https://iothubtestagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent8","name":"iothubtestagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T05:50:45.0235433Z","primaryEndpoints":{"blob":"https://iothubtestagent8.blob.core.windows.net/","queue":"https://iothubtestagent8.queue.core.windows.net/","table":"https://iothubtestagent8.table.core.windows.net/","file":"https://iothubtestagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestagent8-secondary.queue.core.windows.net/","table":"https://iothubtestagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent9","name":"iothubtestagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T12:08:19.1985977Z","primaryEndpoints":{"blob":"https://iothubtestagent9.blob.core.windows.net/","queue":"https://iothubtestagent9.queue.core.windows.net/","table":"https://iothubtestagent9.table.core.windows.net/","file":"https://iothubtestagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestagent9-secondary.queue.core.windows.net/","table":"https://iothubtestagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestailn","name":"iothubtestailn","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T21:30:26.5327702Z","primaryEndpoints":{"blob":"https://iothubtestailn.blob.core.windows.net/","queue":"https://iothubtestailn.queue.core.windows.net/","table":"https://iothubtestailn.table.core.windows.net/","file":"https://iothubtestailn.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestailn-secondary.blob.core.windows.net/","queue":"https://iothubtestailn-secondary.queue.core.windows.net/","table":"https://iothubtestailn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestalklin","name":"iothubtestalklin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T21:44:41.0326156Z","primaryEndpoints":{"blob":"https://iothubtestalklin.blob.core.windows.net/","queue":"https://iothubtestalklin.queue.core.windows.net/","table":"https://iothubtestalklin.table.core.windows.net/","file":"https://iothubtestalklin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestalklin-secondary.blob.core.windows.net/","queue":"https://iothubtestalklin-secondary.queue.core.windows.net/","table":"https://iothubtestalklin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestancan","name":"iothubtestancan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-15T20:53:52.5245873Z","primaryEndpoints":{"blob":"https://iothubtestancan.blob.core.windows.net/","queue":"https://iothubtestancan.queue.core.windows.net/","table":"https://iothubtestancan.table.core.windows.net/","file":"https://iothubtestancan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestancan-secondary.blob.core.windows.net/","queue":"https://iothubtestancan-secondary.queue.core.windows.net/","table":"https://iothubtestancan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestankurkul","name":"iothubtestankurkul","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T18:55:33.5852523Z","primaryEndpoints":{"blob":"https://iothubtestankurkul.blob.core.windows.net/","queue":"https://iothubtestankurkul.queue.core.windows.net/","table":"https://iothubtestankurkul.table.core.windows.net/","file":"https://iothubtestankurkul.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestankurkul-secondary.blob.core.windows.net/","queue":"https://iothubtestankurkul-secondary.queue.core.windows.net/","table":"https://iothubtestankurkul-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestanways","name":"iothubtestanways","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T23:37:24.8038321Z","primaryEndpoints":{"blob":"https://iothubtestanways.blob.core.windows.net/","queue":"https://iothubtestanways.queue.core.windows.net/","table":"https://iothubtestanways.table.core.windows.net/","file":"https://iothubtestanways.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestanways-secondary.blob.core.windows.net/","queue":"https://iothubtestanways-secondary.queue.core.windows.net/","table":"https://iothubtestanways-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent0","name":"iothubtestarmagent0","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:25:07.6231752Z","primaryEndpoints":{"blob":"https://iothubtestarmagent0.blob.core.windows.net/","queue":"https://iothubtestarmagent0.queue.core.windows.net/","table":"https://iothubtestarmagent0.table.core.windows.net/","file":"https://iothubtestarmagent0.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent0-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent0-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent0-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent1","name":"iothubtestarmagent1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:06.1819274Z","primaryEndpoints":{"blob":"https://iothubtestarmagent1.blob.core.windows.net/","queue":"https://iothubtestarmagent1.queue.core.windows.net/","table":"https://iothubtestarmagent1.table.core.windows.net/","file":"https://iothubtestarmagent1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent1-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent1-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent10","name":"iothubtestarmagent10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-04T00:00:33.5483450Z","primaryEndpoints":{"blob":"https://iothubtestarmagent10.blob.core.windows.net/","queue":"https://iothubtestarmagent10.queue.core.windows.net/","table":"https://iothubtestarmagent10.table.core.windows.net/","file":"https://iothubtestarmagent10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent10-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent10-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent11","name":"iothubtestarmagent11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:30:52.2440378Z","primaryEndpoints":{"blob":"https://iothubtestarmagent11.blob.core.windows.net/","queue":"https://iothubtestarmagent11.queue.core.windows.net/","table":"https://iothubtestarmagent11.table.core.windows.net/","file":"https://iothubtestarmagent11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent11-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent11-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent12","name":"iothubtestarmagent12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:32.3588053Z","primaryEndpoints":{"blob":"https://iothubtestarmagent12.blob.core.windows.net/","queue":"https://iothubtestarmagent12.queue.core.windows.net/","table":"https://iothubtestarmagent12.table.core.windows.net/","file":"https://iothubtestarmagent12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent12-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent12-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent13","name":"iothubtestarmagent13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:27.6550375Z","primaryEndpoints":{"blob":"https://iothubtestarmagent13.blob.core.windows.net/","queue":"https://iothubtestarmagent13.queue.core.windows.net/","table":"https://iothubtestarmagent13.table.core.windows.net/","file":"https://iothubtestarmagent13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent13-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent13-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent14","name":"iothubtestarmagent14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:42:37.3561862Z","primaryEndpoints":{"blob":"https://iothubtestarmagent14.blob.core.windows.net/","queue":"https://iothubtestarmagent14.queue.core.windows.net/","table":"https://iothubtestarmagent14.table.core.windows.net/","file":"https://iothubtestarmagent14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent14-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent14-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent15","name":"iothubtestarmagent15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:43:42.1672649Z","primaryEndpoints":{"blob":"https://iothubtestarmagent15.blob.core.windows.net/","queue":"https://iothubtestarmagent15.queue.core.windows.net/","table":"https://iothubtestarmagent15.table.core.windows.net/","file":"https://iothubtestarmagent15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent15-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent15-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent16","name":"iothubtestarmagent16","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:41:06.9895448Z","primaryEndpoints":{"blob":"https://iothubtestarmagent16.blob.core.windows.net/","queue":"https://iothubtestarmagent16.queue.core.windows.net/","table":"https://iothubtestarmagent16.table.core.windows.net/","file":"https://iothubtestarmagent16.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent16-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent16-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent2","name":"iothubtestarmagent2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:14.4324743Z","primaryEndpoints":{"blob":"https://iothubtestarmagent2.blob.core.windows.net/","queue":"https://iothubtestarmagent2.queue.core.windows.net/","table":"https://iothubtestarmagent2.table.core.windows.net/","file":"https://iothubtestarmagent2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent2-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent2-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent3","name":"iothubtestarmagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:05:38.8293155Z","primaryEndpoints":{"blob":"https://iothubtestarmagent3.blob.core.windows.net/","queue":"https://iothubtestarmagent3.queue.core.windows.net/","table":"https://iothubtestarmagent3.table.core.windows.net/","file":"https://iothubtestarmagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent3-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent4","name":"iothubtestarmagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T19:43:06.4252573Z","primaryEndpoints":{"blob":"https://iothubtestarmagent4.blob.core.windows.net/","queue":"https://iothubtestarmagent4.queue.core.windows.net/","table":"https://iothubtestarmagent4.table.core.windows.net/","file":"https://iothubtestarmagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent4-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent5","name":"iothubtestarmagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T04:07:15.4659852Z","primaryEndpoints":{"blob":"https://iothubtestarmagent5.blob.core.windows.net/","queue":"https://iothubtestarmagent5.queue.core.windows.net/","table":"https://iothubtestarmagent5.table.core.windows.net/","file":"https://iothubtestarmagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent5-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent6","name":"iothubtestarmagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T23:05:24.2026638Z","primaryEndpoints":{"blob":"https://iothubtestarmagent6.blob.core.windows.net/","queue":"https://iothubtestarmagent6.queue.core.windows.net/","table":"https://iothubtestarmagent6.table.core.windows.net/","file":"https://iothubtestarmagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent6-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent7","name":"iothubtestarmagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T04:19:55.0567985Z","primaryEndpoints":{"blob":"https://iothubtestarmagent7.blob.core.windows.net/","queue":"https://iothubtestarmagent7.queue.core.windows.net/","table":"https://iothubtestarmagent7.table.core.windows.net/","file":"https://iothubtestarmagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent7-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent8","name":"iothubtestarmagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:51:51.1994925Z","primaryEndpoints":{"blob":"https://iothubtestarmagent8.blob.core.windows.net/","queue":"https://iothubtestarmagent8.queue.core.windows.net/","table":"https://iothubtestarmagent8.table.core.windows.net/","file":"https://iothubtestarmagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent8-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent9","name":"iothubtestarmagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:46:30.6691686Z","primaryEndpoints":{"blob":"https://iothubtestarmagent9.blob.core.windows.net/","queue":"https://iothubtestarmagent9.queue.core.windows.net/","table":"https://iothubtestarmagent9.table.core.windows.net/","file":"https://iothubtestarmagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent9-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestartr","name":"iothubtestartr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T18:36:14.8722411Z","primaryEndpoints":{"blob":"https://iothubtestartr.blob.core.windows.net/","queue":"https://iothubtestartr.queue.core.windows.net/","table":"https://iothubtestartr.table.core.windows.net/","file":"https://iothubtestartr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestartr-secondary.blob.core.windows.net/","queue":"https://iothubtestartr-secondary.queue.core.windows.net/","table":"https://iothubtestartr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavich","name":"iothubtestavich","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-04T00:34:14.7642048Z","primaryEndpoints":{"blob":"https://iothubtestavich.blob.core.windows.net/","queue":"https://iothubtestavich.queue.core.windows.net/","table":"https://iothubtestavich.table.core.windows.net/","file":"https://iothubtestavich.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavich-secondary.blob.core.windows.net/","queue":"https://iothubtestavich-secondary.queue.core.windows.net/","table":"https://iothubtestavich-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavran","name":"iothubtestavran","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T07:08:17.6023949Z","primaryEndpoints":{"blob":"https://iothubtestavran.blob.core.windows.net/","queue":"https://iothubtestavran.queue.core.windows.net/","table":"https://iothubtestavran.table.core.windows.net/","file":"https://iothubtestavran.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavran-secondary.blob.core.windows.net/","queue":"https://iothubtestavran-secondary.queue.core.windows.net/","table":"https://iothubtestavran-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestaziotgit","name":"iothubtestaziotgit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-26T08:20:05.9498662Z","primaryEndpoints":{"blob":"https://iothubtestaziotgit.blob.core.windows.net/","queue":"https://iothubtestaziotgit.queue.core.windows.net/","table":"https://iothubtestaziotgit.table.core.windows.net/","file":"https://iothubtestaziotgit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestaziotgit-secondary.blob.core.windows.net/","queue":"https://iothubtestaziotgit-secondary.queue.core.windows.net/","table":"https://iothubtestaziotgit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestchschill","name":"iothubtestchschill","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T19:28:33.3933505Z","primaryEndpoints":{"blob":"https://iothubtestchschill.blob.core.windows.net/","queue":"https://iothubtestchschill.queue.core.windows.net/","table":"https://iothubtestchschill.table.core.windows.net/","file":"https://iothubtestchschill.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestchschill-secondary.blob.core.windows.net/","queue":"https://iothubtestchschill-secondary.queue.core.windows.net/","table":"https://iothubtestchschill-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdemuniap","name":"iothubtestdemuniap","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T18:05:33.8976512Z","primaryEndpoints":{"blob":"https://iothubtestdemuniap.blob.core.windows.net/","queue":"https://iothubtestdemuniap.queue.core.windows.net/","table":"https://iothubtestdemuniap.table.core.windows.net/","file":"https://iothubtestdemuniap.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdemuniap-secondary.blob.core.windows.net/","queue":"https://iothubtestdemuniap-secondary.queue.core.windows.net/","table":"https://iothubtestdemuniap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdmpypin","name":"iothubtestdmpypin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T02:06:07.6557833Z","primaryEndpoints":{"blob":"https://iothubtestdmpypin.blob.core.windows.net/","queue":"https://iothubtestdmpypin.queue.core.windows.net/","table":"https://iothubtestdmpypin.table.core.windows.net/","file":"https://iothubtestdmpypin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdmpypin-secondary.blob.core.windows.net/","queue":"https://iothubtestdmpypin-secondary.queue.core.windows.net/","table":"https://iothubtestdmpypin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesterpogas","name":"iothubtesterpogas","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:42:35.6790670Z","primaryEndpoints":{"blob":"https://iothubtesterpogas.blob.core.windows.net/","queue":"https://iothubtesterpogas.queue.core.windows.net/","table":"https://iothubtesterpogas.table.core.windows.net/","file":"https://iothubtesterpogas.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesterpogas-secondary.blob.core.windows.net/","queue":"https://iothubtesterpogas-secondary.queue.core.windows.net/","table":"https://iothubtesterpogas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestevansim","name":"iothubtestevansim","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T19:23:28.4781666Z","primaryEndpoints":{"blob":"https://iothubtestevansim.blob.core.windows.net/","queue":"https://iothubtestevansim.queue.core.windows.net/","table":"https://iothubtestevansim.table.core.windows.net/","file":"https://iothubtestevansim.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestevansim-secondary.blob.core.windows.net/","queue":"https://iothubtestevansim-secondary.queue.core.windows.net/","table":"https://iothubtestevansim-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestfilipst","name":"iothubtestfilipst","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T18:49:48.9517375Z","primaryEndpoints":{"blob":"https://iothubtestfilipst.blob.core.windows.net/","queue":"https://iothubtestfilipst.queue.core.windows.net/","table":"https://iothubtestfilipst.table.core.windows.net/","file":"https://iothubtestfilipst.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestfilipst-secondary.blob.core.windows.net/","queue":"https://iothubtestfilipst-secondary.queue.core.windows.net/","table":"https://iothubtestfilipst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesthaavula","name":"iothubtesthaavula","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T19:46:15.8018780Z","primaryEndpoints":{"blob":"https://iothubtesthaavula.blob.core.windows.net/","queue":"https://iothubtesthaavula.queue.core.windows.net/","table":"https://iothubtesthaavula.table.core.windows.net/","file":"https://iothubtesthaavula.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesthaavula-secondary.blob.core.windows.net/","queue":"https://iothubtesthaavula-secondary.queue.core.windows.net/","table":"https://iothubtesthaavula-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestiotadmin","name":"iothubtestiotadmin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T06:15:38.7880310Z","primaryEndpoints":{"blob":"https://iothubtestiotadmin.blob.core.windows.net/","queue":"https://iothubtestiotadmin.queue.core.windows.net/","table":"https://iothubtestiotadmin.table.core.windows.net/","file":"https://iothubtestiotadmin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestiotadmin-secondary.blob.core.windows.net/","queue":"https://iothubtestiotadmin-secondary.queue.core.windows.net/","table":"https://iothubtestiotadmin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestisyama","name":"iothubtestisyama","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T20:16:57.8635776Z","primaryEndpoints":{"blob":"https://iothubtestisyama.blob.core.windows.net/","queue":"https://iothubtestisyama.queue.core.windows.net/","table":"https://iothubtestisyama.table.core.windows.net/","file":"https://iothubtestisyama.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestisyama-secondary.blob.core.windows.net/","queue":"https://iothubtestisyama-secondary.queue.core.windows.net/","table":"https://iothubtestisyama-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjacoimba","name":"iothubtestjacoimba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-03T13:35:42.2046780Z","primaryEndpoints":{"blob":"https://iothubtestjacoimba.blob.core.windows.net/","queue":"https://iothubtestjacoimba.queue.core.windows.net/","table":"https://iothubtestjacoimba.table.core.windows.net/","file":"https://iothubtestjacoimba.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjacoimba-secondary.blob.core.windows.net/","queue":"https://iothubtestjacoimba-secondary.queue.core.windows.net/","table":"https://iothubtestjacoimba-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjichang","name":"iothubtestjichang","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T20:48:51.2697659Z","primaryEndpoints":{"blob":"https://iothubtestjichang.blob.core.windows.net/","queue":"https://iothubtestjichang.queue.core.windows.net/","table":"https://iothubtestjichang.table.core.windows.net/","file":"https://iothubtestjichang.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjichang-secondary.blob.core.windows.net/","queue":"https://iothubtestjichang-secondary.queue.core.windows.net/","table":"https://iothubtestjichang-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjitenkos","name":"iothubtestjitenkos","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-21T20:10:24.8341568Z","primaryEndpoints":{"blob":"https://iothubtestjitenkos.blob.core.windows.net/","queue":"https://iothubtestjitenkos.queue.core.windows.net/","table":"https://iothubtestjitenkos.table.core.windows.net/","file":"https://iothubtestjitenkos.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjitenkos-secondary.blob.core.windows.net/","queue":"https://iothubtestjitenkos-secondary.queue.core.windows.net/","table":"https://iothubtestjitenkos-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjucarpio","name":"iothubtestjucarpio","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-20T21:23:53.2553997Z","primaryEndpoints":{"blob":"https://iothubtestjucarpio.blob.core.windows.net/","queue":"https://iothubtestjucarpio.queue.core.windows.net/","table":"https://iothubtestjucarpio.table.core.windows.net/","file":"https://iothubtestjucarpio.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjucarpio-secondary.blob.core.windows.net/","queue":"https://iothubtestjucarpio-secondary.queue.core.windows.net/","table":"https://iothubtestjucarpio-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkaagarw","name":"iothubtestkaagarw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-02T22:17:52.7382855Z","primaryEndpoints":{"blob":"https://iothubtestkaagarw.blob.core.windows.net/","queue":"https://iothubtestkaagarw.queue.core.windows.net/","table":"https://iothubtestkaagarw.table.core.windows.net/","file":"https://iothubtestkaagarw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkaagarw-secondary.blob.core.windows.net/","queue":"https://iothubtestkaagarw-secondary.queue.core.windows.net/","table":"https://iothubtestkaagarw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkanoda","name":"iothubtestkanoda","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T20:18:58.8099190Z","primaryEndpoints":{"blob":"https://iothubtestkanoda.blob.core.windows.net/","queue":"https://iothubtestkanoda.queue.core.windows.net/","table":"https://iothubtestkanoda.table.core.windows.net/","file":"https://iothubtestkanoda.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkanoda-secondary.blob.core.windows.net/","queue":"https://iothubtestkanoda-secondary.queue.core.windows.net/","table":"https://iothubtestkanoda-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlinsqi","name":"iothubtestlinsqi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T06:56:19.5684188Z","primaryEndpoints":{"blob":"https://iothubtestlinsqi.blob.core.windows.net/","queue":"https://iothubtestlinsqi.queue.core.windows.net/","table":"https://iothubtestlinsqi.table.core.windows.net/","file":"https://iothubtestlinsqi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlinsqi-secondary.blob.core.windows.net/","queue":"https://iothubtestlinsqi-secondary.queue.core.windows.net/","table":"https://iothubtestlinsqi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlygasch","name":"iothubtestlygasch","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T22:53:48.2371055Z","primaryEndpoints":{"blob":"https://iothubtestlygasch.blob.core.windows.net/","queue":"https://iothubtestlygasch.queue.core.windows.net/","table":"https://iothubtestlygasch.table.core.windows.net/","file":"https://iothubtestlygasch.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlygasch-secondary.blob.core.windows.net/","queue":"https://iothubtestlygasch-secondary.queue.core.windows.net/","table":"https://iothubtestlygasch-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaazer","name":"iothubtestmaazer","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T20:04:50.5225085Z","primaryEndpoints":{"blob":"https://iothubtestmaazer.blob.core.windows.net/","queue":"https://iothubtestmaazer.queue.core.windows.net/","table":"https://iothubtestmaazer.table.core.windows.net/","file":"https://iothubtestmaazer.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaazer-secondary.blob.core.windows.net/","queue":"https://iothubtestmaazer-secondary.queue.core.windows.net/","table":"https://iothubtestmaazer-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaga","name":"iothubtestmaga","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T22:18:11.6739090Z","primaryEndpoints":{"blob":"https://iothubtestmaga.blob.core.windows.net/","queue":"https://iothubtestmaga.queue.core.windows.net/","table":"https://iothubtestmaga.table.core.windows.net/","file":"https://iothubtestmaga.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaga-secondary.blob.core.windows.net/","queue":"https://iothubtestmaga-secondary.queue.core.windows.net/","table":"https://iothubtestmaga-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmatwal","name":"iothubtestmatwal","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:32:55.9700835Z","primaryEndpoints":{"blob":"https://iothubtestmatwal.blob.core.windows.net/","queue":"https://iothubtestmatwal.queue.core.windows.net/","table":"https://iothubtestmatwal.table.core.windows.net/","file":"https://iothubtestmatwal.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmatwal-secondary.blob.core.windows.net/","queue":"https://iothubtestmatwal-secondary.queue.core.windows.net/","table":"https://iothubtestmatwal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestminune","name":"iothubtestminune","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T00:17:59.9927105Z","primaryEndpoints":{"blob":"https://iothubtestminune.blob.core.windows.net/","queue":"https://iothubtestminune.queue.core.windows.net/","table":"https://iothubtestminune.table.core.windows.net/","file":"https://iothubtestminune.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestminune-secondary.blob.core.windows.net/","queue":"https://iothubtestminune-secondary.queue.core.windows.net/","table":"https://iothubtestminune-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmugunm","name":"iothubtestmugunm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T18:43:40.8831823Z","primaryEndpoints":{"blob":"https://iothubtestmugunm.blob.core.windows.net/","queue":"https://iothubtestmugunm.queue.core.windows.net/","table":"https://iothubtestmugunm.table.core.windows.net/","file":"https://iothubtestmugunm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmugunm-secondary.blob.core.windows.net/","queue":"https://iothubtestmugunm-secondary.queue.core.windows.net/","table":"https://iothubtestmugunm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnadeshpa","name":"iothubtestnadeshpa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-26T23:12:51.2252415Z","primaryEndpoints":{"blob":"https://iothubtestnadeshpa.blob.core.windows.net/","queue":"https://iothubtestnadeshpa.queue.core.windows.net/","table":"https://iothubtestnadeshpa.table.core.windows.net/","file":"https://iothubtestnadeshpa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnadeshpa-secondary.blob.core.windows.net/","queue":"https://iothubtestnadeshpa-secondary.queue.core.windows.net/","table":"https://iothubtestnadeshpa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnebanfic","name":"iothubtestnebanfic","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:56:11.3814714Z","primaryEndpoints":{"blob":"https://iothubtestnebanfic.blob.core.windows.net/","queue":"https://iothubtestnebanfic.queue.core.windows.net/","table":"https://iothubtestnebanfic.table.core.windows.net/","file":"https://iothubtestnebanfic.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnebanfic-secondary.blob.core.windows.net/","queue":"https://iothubtestnebanfic-secondary.queue.core.windows.net/","table":"https://iothubtestnebanfic-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnimengan","name":"iothubtestnimengan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-01T14:31:46.6447731Z","primaryEndpoints":{"blob":"https://iothubtestnimengan.blob.core.windows.net/","queue":"https://iothubtestnimengan.queue.core.windows.net/","table":"https://iothubtestnimengan.table.core.windows.net/","file":"https://iothubtestnimengan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnimengan-secondary.blob.core.windows.net/","queue":"https://iothubtestnimengan-secondary.queue.core.windows.net/","table":"https://iothubtestnimengan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnivithla","name":"iothubtestnivithla","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T02:25:41.1262385Z","primaryEndpoints":{"blob":"https://iothubtestnivithla.blob.core.windows.net/","queue":"https://iothubtestnivithla.queue.core.windows.net/","table":"https://iothubtestnivithla.table.core.windows.net/","file":"https://iothubtestnivithla.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnivithla-secondary.blob.core.windows.net/","queue":"https://iothubtestnivithla-secondary.queue.core.windows.net/","table":"https://iothubtestnivithla-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprashmo","name":"iothubtestprashmo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-10T21:44:41.8251549Z","primaryEndpoints":{"blob":"https://iothubtestprashmo.blob.core.windows.net/","queue":"https://iothubtestprashmo.queue.core.windows.net/","table":"https://iothubtestprashmo.table.core.windows.net/","file":"https://iothubtestprashmo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprashmo-secondary.blob.core.windows.net/","queue":"https://iothubtestprashmo-secondary.queue.core.windows.net/","table":"https://iothubtestprashmo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprepr","name":"iothubtestprepr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-05T17:19:25.3718430Z","primaryEndpoints":{"blob":"https://iothubtestprepr.blob.core.windows.net/","queue":"https://iothubtestprepr.queue.core.windows.net/","table":"https://iothubtestprepr.table.core.windows.net/","file":"https://iothubtestprepr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprepr-secondary.blob.core.windows.net/","queue":"https://iothubtestprepr-secondary.queue.core.windows.net/","table":"https://iothubtestprepr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrajave","name":"iothubtestrajave","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-20T00:31:23.1768369Z","primaryEndpoints":{"blob":"https://iothubtestrajave.blob.core.windows.net/","queue":"https://iothubtestrajave.queue.core.windows.net/","table":"https://iothubtestrajave.table.core.windows.net/","file":"https://iothubtestrajave.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrajave-secondary.blob.core.windows.net/","queue":"https://iothubtestrajave-secondary.queue.core.windows.net/","table":"https://iothubtestrajave-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestraviy","name":"iothubtestraviy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T17:42:52.3734464Z","primaryEndpoints":{"blob":"https://iothubtestraviy.blob.core.windows.net/","queue":"https://iothubtestraviy.queue.core.windows.net/","table":"https://iothubtestraviy.table.core.windows.net/","file":"https://iothubtestraviy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestraviy-secondary.blob.core.windows.net/","queue":"https://iothubtestraviy-secondary.queue.core.windows.net/","table":"https://iothubtestraviy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrechan","name":"iothubtestrechan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:57:31.1606191Z","primaryEndpoints":{"blob":"https://iothubtestrechan.blob.core.windows.net/","queue":"https://iothubtestrechan.queue.core.windows.net/","table":"https://iothubtestrechan.table.core.windows.net/","file":"https://iothubtestrechan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrechan-secondary.blob.core.windows.net/","queue":"https://iothubtestrechan-secondary.queue.core.windows.net/","table":"https://iothubtestrechan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrentu","name":"iothubtestrentu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:40:53.7087040Z","primaryEndpoints":{"blob":"https://iothubtestrentu.blob.core.windows.net/","queue":"https://iothubtestrentu.queue.core.windows.net/","table":"https://iothubtestrentu.table.core.windows.net/","file":"https://iothubtestrentu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrentu-secondary.blob.core.windows.net/","queue":"https://iothubtestrentu-secondary.queue.core.windows.net/","table":"https://iothubtestrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrokhande","name":"iothubtestrokhande","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T02:32:15.1855822Z","primaryEndpoints":{"blob":"https://iothubtestrokhande.blob.core.windows.net/","queue":"https://iothubtestrokhande.queue.core.windows.net/","table":"https://iothubtestrokhande.table.core.windows.net/","file":"https://iothubtestrokhande.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrokhande-secondary.blob.core.windows.net/","queue":"https://iothubtestrokhande-secondary.queue.core.windows.net/","table":"https://iothubtestrokhande-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsachinc","name":"iothubtestsachinc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T20:57:22.1666634Z","primaryEndpoints":{"blob":"https://iothubtestsachinc.blob.core.windows.net/","queue":"https://iothubtestsachinc.queue.core.windows.net/","table":"https://iothubtestsachinc.table.core.windows.net/","file":"https://iothubtestsachinc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsachinc-secondary.blob.core.windows.net/","queue":"https://iothubtestsachinc-secondary.queue.core.windows.net/","table":"https://iothubtestsachinc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsaganeri","name":"iothubtestsaganeri","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T00:08:11.2278020Z","primaryEndpoints":{"blob":"https://iothubtestsaganeri.blob.core.windows.net/","queue":"https://iothubtestsaganeri.queue.core.windows.net/","table":"https://iothubtestsaganeri.table.core.windows.net/","file":"https://iothubtestsaganeri.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsaganeri-secondary.blob.core.windows.net/","queue":"https://iothubtestsaganeri-secondary.queue.core.windows.net/","table":"https://iothubtestsaganeri-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsalall","name":"iothubtestsalall","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-08T21:34:10.1717362Z","primaryEndpoints":{"blob":"https://iothubtestsalall.blob.core.windows.net/","queue":"https://iothubtestsalall.queue.core.windows.net/","table":"https://iothubtestsalall.table.core.windows.net/","file":"https://iothubtestsalall.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsalall-secondary.blob.core.windows.net/","queue":"https://iothubtestsalall-secondary.queue.core.windows.net/","table":"https://iothubtestsalall-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsamguo","name":"iothubtestsamguo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:02:49.8084201Z","primaryEndpoints":{"blob":"https://iothubtestsamguo.blob.core.windows.net/","queue":"https://iothubtestsamguo.queue.core.windows.net/","table":"https://iothubtestsamguo.table.core.windows.net/","file":"https://iothubtestsamguo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsamguo-secondary.blob.core.windows.net/","queue":"https://iothubtestsamguo-secondary.queue.core.windows.net/","table":"https://iothubtestsamguo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsansun","name":"iothubtestsansun","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T22:00:11.9669713Z","primaryEndpoints":{"blob":"https://iothubtestsansun.blob.core.windows.net/","queue":"https://iothubtestsansun.queue.core.windows.net/","table":"https://iothubtestsansun.table.core.windows.net/","file":"https://iothubtestsansun.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsansun-secondary.blob.core.windows.net/","queue":"https://iothubtestsansun-secondary.queue.core.windows.net/","table":"https://iothubtestsansun-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestshishu","name":"iothubtestshishu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T02:08:28.2187591Z","primaryEndpoints":{"blob":"https://iothubtestshishu.blob.core.windows.net/","queue":"https://iothubtestshishu.queue.core.windows.net/","table":"https://iothubtestshishu.table.core.windows.net/","file":"https://iothubtestshishu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestshishu-secondary.blob.core.windows.net/","queue":"https://iothubtestshishu-secondary.queue.core.windows.net/","table":"https://iothubtestshishu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestskintali","name":"iothubtestskintali","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:54:13.6485612Z","primaryEndpoints":{"blob":"https://iothubtestskintali.blob.core.windows.net/","queue":"https://iothubtestskintali.queue.core.windows.net/","table":"https://iothubtestskintali.table.core.windows.net/","file":"https://iothubtestskintali.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestskintali-secondary.blob.core.windows.net/","queue":"https://iothubtestskintali-secondary.queue.core.windows.net/","table":"https://iothubtestskintali-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestspradhan","name":"iothubtestspradhan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T03:14:36.7417452Z","primaryEndpoints":{"blob":"https://iothubtestspradhan.blob.core.windows.net/","queue":"https://iothubtestspradhan.queue.core.windows.net/","table":"https://iothubtestspradhan.table.core.windows.net/","file":"https://iothubtestspradhan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestspradhan-secondary.blob.core.windows.net/","queue":"https://iothubtestspradhan-secondary.queue.core.windows.net/","table":"https://iothubtestspradhan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestswkrovvi","name":"iothubtestswkrovvi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-21T22:29:05.5365174Z","primaryEndpoints":{"blob":"https://iothubtestswkrovvi.blob.core.windows.net/","queue":"https://iothubtestswkrovvi.queue.core.windows.net/","table":"https://iothubtestswkrovvi.table.core.windows.net/","file":"https://iothubtestswkrovvi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestswkrovvi-secondary.blob.core.windows.net/","queue":"https://iothubtestswkrovvi-secondary.queue.core.windows.net/","table":"https://iothubtestswkrovvi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttadesseb","name":"iothubtesttadesseb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-13T17:12:33.4184293Z","primaryEndpoints":{"blob":"https://iothubtesttadesseb.blob.core.windows.net/","queue":"https://iothubtesttadesseb.queue.core.windows.net/","table":"https://iothubtesttadesseb.table.core.windows.net/","file":"https://iothubtesttadesseb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttadesseb-secondary.blob.core.windows.net/","queue":"https://iothubtesttadesseb-secondary.queue.core.windows.net/","table":"https://iothubtesttadesseb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttestarm5","name":"iothubtesttestarm5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T21:30:06.3944118Z","primaryEndpoints":{"blob":"https://iothubtesttestarm5.blob.core.windows.net/","queue":"https://iothubtesttestarm5.queue.core.windows.net/","table":"https://iothubtesttestarm5.table.core.windows.net/","file":"https://iothubtesttestarm5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttestarm5-secondary.blob.core.windows.net/","queue":"https://iothubtesttestarm5-secondary.queue.core.windows.net/","table":"https://iothubtesttestarm5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestvishalg","name":"iothubtestvishalg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-03T23:08:30.0223446Z","primaryEndpoints":{"blob":"https://iothubtestvishalg.blob.core.windows.net/","queue":"https://iothubtestvishalg.queue.core.windows.net/","table":"https://iothubtestvishalg.table.core.windows.net/","file":"https://iothubtestvishalg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestvishalg-secondary.blob.core.windows.net/","queue":"https://iothubtestvishalg-secondary.queue.core.windows.net/","table":"https://iothubtestvishalg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzadixon","name":"iothubtestzadixon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T19:01:04.0109651Z","primaryEndpoints":{"blob":"https://iothubtestzadixon.blob.core.windows.net/","queue":"https://iothubtestzadixon.queue.core.windows.net/","table":"https://iothubtestzadixon.table.core.windows.net/","file":"https://iothubtestzadixon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzadixon-secondary.blob.core.windows.net/","queue":"https://iothubtestzadixon-secondary.queue.core.windows.net/","table":"https://iothubtestzadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen10","name":"iothubtestzagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:25:38.6905986Z","primaryEndpoints":{"blob":"https://iothubtestzagen10.blob.core.windows.net/","queue":"https://iothubtestzagen10.queue.core.windows.net/","table":"https://iothubtestzagen10.table.core.windows.net/","file":"https://iothubtestzagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen10-secondary.queue.core.windows.net/","table":"https://iothubtestzagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen12","name":"iothubtestzagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:57:42.4098682Z","primaryEndpoints":{"blob":"https://iothubtestzagen12.blob.core.windows.net/","queue":"https://iothubtestzagen12.queue.core.windows.net/","table":"https://iothubtestzagen12.table.core.windows.net/","file":"https://iothubtestzagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen12-secondary.queue.core.windows.net/","table":"https://iothubtestzagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen13","name":"iothubtestzagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:55:47.9972019Z","primaryEndpoints":{"blob":"https://iothubtestzagen13.blob.core.windows.net/","queue":"https://iothubtestzagen13.queue.core.windows.net/","table":"https://iothubtestzagen13.table.core.windows.net/","file":"https://iothubtestzagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen13-secondary.queue.core.windows.net/","table":"https://iothubtestzagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen14","name":"iothubtestzagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T09:13:59.2559614Z","primaryEndpoints":{"blob":"https://iothubtestzagen14.blob.core.windows.net/","queue":"https://iothubtestzagen14.queue.core.windows.net/","table":"https://iothubtestzagen14.table.core.windows.net/","file":"https://iothubtestzagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen14-secondary.queue.core.windows.net/","table":"https://iothubtestzagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen15","name":"iothubtestzagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T07:43:56.5112954Z","primaryEndpoints":{"blob":"https://iothubtestzagen15.blob.core.windows.net/","queue":"https://iothubtestzagen15.queue.core.windows.net/","table":"https://iothubtestzagen15.table.core.windows.net/","file":"https://iothubtestzagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen15-secondary.queue.core.windows.net/","table":"https://iothubtestzagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent5","name":"iothubtestzagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T22:41:21.2471564Z","primaryEndpoints":{"blob":"https://iothubtestzagent5.blob.core.windows.net/","queue":"https://iothubtestzagent5.queue.core.windows.net/","table":"https://iothubtestzagent5.table.core.windows.net/","file":"https://iothubtestzagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent5-secondary.queue.core.windows.net/","table":"https://iothubtestzagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent6","name":"iothubtestzagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:23:38.0340787Z","primaryEndpoints":{"blob":"https://iothubtestzagent6.blob.core.windows.net/","queue":"https://iothubtestzagent6.queue.core.windows.net/","table":"https://iothubtestzagent6.table.core.windows.net/","file":"https://iothubtestzagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent6-secondary.queue.core.windows.net/","table":"https://iothubtestzagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent7","name":"iothubtestzagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T19:01:03.0291717Z","primaryEndpoints":{"blob":"https://iothubtestzagent7.blob.core.windows.net/","queue":"https://iothubtestzagent7.queue.core.windows.net/","table":"https://iothubtestzagent7.table.core.windows.net/","file":"https://iothubtestzagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent7-secondary.queue.core.windows.net/","table":"https://iothubtestzagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent8","name":"iothubtestzagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T20:34:35.3897729Z","primaryEndpoints":{"blob":"https://iothubtestzagent8.blob.core.windows.net/","queue":"https://iothubtestzagent8.queue.core.windows.net/","table":"https://iothubtestzagent8.table.core.windows.net/","file":"https://iothubtestzagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent8-secondary.queue.core.windows.net/","table":"https://iothubtestzagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzhangyih","name":"iothubtestzhangyih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T01:43:54.5986244Z","primaryEndpoints":{"blob":"https://iothubtestzhangyih.blob.core.windows.net/","queue":"https://iothubtestzhangyih.queue.core.windows.net/","table":"https://iothubtestzhangyih.table.core.windows.net/","file":"https://iothubtestzhangyih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzhangyih-secondary.blob.core.windows.net/","queue":"https://iothubtestzhangyih-secondary.queue.core.windows.net/","table":"https://iothubtestzhangyih-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzheg","name":"iothubtestzheg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T06:16:21.8173801Z","primaryEndpoints":{"blob":"https://iothubtestzheg.blob.core.windows.net/","queue":"https://iothubtestzheg.queue.core.windows.net/","table":"https://iothubtestzheg.table.core.windows.net/","file":"https://iothubtestzheg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzheg-secondary.blob.core.windows.net/","queue":"https://iothubtestzheg-secondary.queue.core.windows.net/","table":"https://iothubtestzheg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/c_westus/providers/Microsoft.Storage/storageAccounts/simmvp3ovk0c6molt3c7178","name":"simmvp3ovk0c6molt3c7178","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T01:14:27.5133334Z","primaryEndpoints":{"blob":"https://simmvp3ovk0c6molt3c7178.blob.core.windows.net/","queue":"https://simmvp3ovk0c6molt3c7178.queue.core.windows.net/","table":"https://simmvp3ovk0c6molt3c7178.table.core.windows.net/","file":"https://simmvp3ovk0c6molt3c7178.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag215","name":"skintalitestdiag215","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T17:06:36.6308986Z","primaryEndpoints":{"blob":"https://skintalitestdiag215.blob.core.windows.net/","queue":"https://skintalitestdiag215.queue.core.windows.net/","table":"https://skintalitestdiag215.table.core.windows.net/","file":"https://skintalitestdiag215.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag","name":"mgtlabdiag","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T01:59:01.5975155Z","primaryEndpoints":{"blob":"https://mgtlabdiag.blob.core.windows.net/","queue":"https://mgtlabdiag.queue.core.windows.net/","table":"https://mgtlabdiag.table.core.windows.net/","file":"https://mgtlabdiag.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fips-finagle-investigate/providers/Microsoft.Storage/storageAccounts/fips0finagle0investigate","name":"fips0finagle0investigate","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-02-27T00:52:30.3775048Z","primaryEndpoints":{"dfs":"https://fips0finagle0investigate.dfs.core.windows.net/","web":"https://fips0finagle0investigate.z21.web.core.windows.net/","blob":"https://fips0finagle0investigate.blob.core.windows.net/","queue":"https://fips0finagle0investigate.queue.core.windows.net/","table":"https://fips0finagle0investigate.table.core.windows.net/","file":"https://fips0finagle0investigate.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttest2ac","name":"routingrunsttest2ac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-25T01:55:14.5711807Z","primaryEndpoints":{"dfs":"https://routingrunsttest2ac.dfs.core.windows.net/","blob":"https://routingrunsttest2ac.blob.core.windows.net/","table":"https://routingrunsttest2ac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T18:54:05.0784961Z","primaryEndpoints":{"dfs":"https://shishustoragenormal.dfs.core.windows.net/","web":"https://shishustoragenormal.z21.web.core.windows.net/","blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishustoragenormal-secondary.dfs.core.windows.net/","web":"https://shishustoragenormal-secondary.z21.web.core.windows.net/","blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/storageconsttestac","name":"storageconsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T23:36:34.6272473Z","primaryEndpoints":{"dfs":"https://storageconsttestac.dfs.core.windows.net/","blob":"https://storageconsttestac.blob.core.windows.net/","table":"https://storageconsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbuctestsa","name":"andbuctestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T06:23:59.6135355Z","primaryEndpoints":{"dfs":"https://andbuctestsa.dfs.core.windows.net/","web":"https://andbuctestsa.z19.web.core.windows.net/","blob":"https://andbuctestsa.blob.core.windows.net/","queue":"https://andbuctestsa.queue.core.windows.net/","table":"https://andbuctestsa.table.core.windows.net/","file":"https://andbuctestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbuctestsa-secondary.dfs.core.windows.net/","web":"https://andbuctestsa-secondary.z19.web.core.windows.net/","blob":"https://andbuctestsa-secondary.blob.core.windows.net/","queue":"https://andbuctestsa-secondary.queue.core.windows.net/","table":"https://andbuctestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurpoc-rg/providers/Microsoft.Storage/storageAccounts/ankurpoc","name":"ankurpoc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T14:03:58.5309983Z","primaryEndpoints":{"dfs":"https://ankurpoc.dfs.core.windows.net/","web":"https://ankurpoc.z19.web.core.windows.net/","blob":"https://ankurpoc.blob.core.windows.net/","queue":"https://ankurpoc.queue.core.windows.net/","table":"https://ankurpoc.table.core.windows.net/","file":"https://ankurpoc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ankurpoc-secondary.dfs.core.windows.net/","web":"https://ankurpoc-secondary.z19.web.core.windows.net/","blob":"https://ankurpoc-secondary.blob.core.windows.net/","queue":"https://ankurpoc-secondary.queue.core.windows.net/","table":"https://ankurpoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/dtnotificationbugbash","name":"dtnotificationbugbash","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-24T23:06:57.7437857Z","primaryEndpoints":{"dfs":"https://dtnotificationbugbash.dfs.core.windows.net/","web":"https://dtnotificationbugbash.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash.blob.core.windows.net/","queue":"https://dtnotificationbugbash.queue.core.windows.net/","table":"https://dtnotificationbugbash.table.core.windows.net/","file":"https://dtnotificationbugbash.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtnotificationbugbash-secondary.dfs.core.windows.net/","web":"https://dtnotificationbugbash-secondary.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash-secondary.blob.core.windows.net/","queue":"https://dtnotificationbugbash-secondary.queue.core.windows.net/","table":"https://dtnotificationbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/jichangrgdiag","name":"jichangrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-01T23:47:57.7921155Z","primaryEndpoints":{"blob":"https://jichangrgdiag.blob.core.windows.net/","queue":"https://jichangrgdiag.queue.core.windows.net/","table":"https://jichangrgdiag.table.core.windows.net/","file":"https://jichangrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/storageaccountaskhu9745","name":"storageaccountaskhu9745","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-16T01:13:12.1748216Z","primaryEndpoints":{"blob":"https://storageaccountaskhu9745.blob.core.windows.net/","queue":"https://storageaccountaskhu9745.queue.core.windows.net/","table":"https://storageaccountaskhu9745.table.core.windows.net/","file":"https://storageaccountaskhu9745.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag788","name":"magargdiag788","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-23T04:25:34.0062642Z","primaryEndpoints":{"blob":"https://magargdiag788.blob.core.windows.net/","queue":"https://magargdiag788.queue.core.windows.net/","table":"https://magargdiag788.table.core.windows.net/","file":"https://magargdiag788.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag","name":"magargdiag","type":"Microsoft.Storage/storageAccounts","location":"westindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-13T22:06:53.9752332Z","primaryEndpoints":{"blob":"https://magargdiag.blob.core.windows.net/","queue":"https://magargdiag.queue.core.windows.net/","table":"https://magargdiag.table.core.windows.net/","file":"https://magargdiag.file.core.windows.net/"},"primaryLocation":"westindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbucteststorage","name":"andbucteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-20T22:17:30.2844387Z","primaryEndpoints":{"dfs":"https://andbucteststorage.dfs.core.windows.net/","web":"https://andbucteststorage.z5.web.core.windows.net/","blob":"https://andbucteststorage.blob.core.windows.net/","queue":"https://andbucteststorage.queue.core.windows.net/","table":"https://andbucteststorage.table.core.windows.net/","file":"https://andbucteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbucteststorage-secondary.dfs.core.windows.net/","web":"https://andbucteststorage-secondary.z5.web.core.windows.net/","blob":"https://andbucteststorage-secondary.blob.core.windows.net/","queue":"https://andbucteststorage-secondary.queue.core.windows.net/","table":"https://andbucteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-site/providers/Microsoft.Storage/storageAccounts/rajstaticsite","name":"rajstaticsite","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T14:49:40.2589627Z","primaryEndpoints":{"dfs":"https://rajstaticsite.dfs.core.windows.net/","web":"https://rajstaticsite.z5.web.core.windows.net/","blob":"https://rajstaticsite.blob.core.windows.net/","queue":"https://rajstaticsite.queue.core.windows.net/","table":"https://rajstaticsite.table.core.windows.net/","file":"https://rajstaticsite.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag","name":"skintalitestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T00:38:53.3700818Z","primaryEndpoints":{"blob":"https://skintalitestdiag.blob.core.windows.net/","queue":"https://skintalitestdiag.queue.core.windows.net/","table":"https://skintalitestdiag.table.core.windows.net/","file":"https://skintalitestdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mchaiaz/providers/Microsoft.Storage/storageAccounts/mchaizrs","name":"mchaizrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-18T23:29:18.2105166Z","primaryEndpoints":{"dfs":"https://mchaizrs.dfs.core.windows.net/","web":"https://mchaizrs.z3.web.core.windows.net/","blob":"https://mchaizrs.blob.core.windows.net/","queue":"https://mchaizrs.queue.core.windows.net/","table":"https://mchaizrs.table.core.windows.net/","file":"https://mchaizrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '112539' + - '297388' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:35 GMT + - Sat, 13 Jun 2020 21:10:08 GMT expires: - '-1' pragma: @@ -44,17 +44,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4ccc05b1-8ded-40a6-8846-857dc4aadf96 - - bfde45dd-ab30-4c5c-881a-cb79bf2c58bd - - b721d735-9489-4235-b2ff-32a6c209a9b0 - - 79ac1779-9ffd-4eca-8017-f383cd418620 - - 566a36c7-6078-4025-b13c-3dd0e8a30e59 - - 8c75f114-1724-40cb-b92f-b98c6f66fef4 - - b12c9206-b487-4dd0-8f69-ea0b121a89dd - - e2c63a9f-434f-486a-b8cb-bdf86225693c - - 1b09bcb7-bed4-47ab-8285-b82f41a0e0ae - - 7eb3e3cb-79bc-48fb-bd70-d0f030eb6b3a - - f83c9abd-6ddd-45a5-acd1-2f0368491126 + - 1c3c7dd2-2b49-4ddf-a705-a6a580d09cd1 + - 56254a29-c3f7-43a7-b14f-3653115eea17 + - 11c8cca0-2188-4d2b-9369-fa37b115985c + - 3e1d8752-7747-4479-bb9b-049402d4af3b + - ebf0c926-3e9a-4a7d-87bd-19bb5e379b2c + - 9fa56afa-ec8e-457d-a4a2-ac8b99b8fea8 + - 58faa8b8-2cdb-422d-a9a4-7d3b0910227b + - a5f2f914-38ac-4b36-b994-6f920b0a65ca + - 867b9356-353c-4106-994c-c1e4dbda045d + - 9def1bf1-f46d-443c-a460-b35e7aef50cf + - 570b4aa2-f3ec-4ab2-9aa1-3501297c7d18 + - d9af2037-07bb-42c7-a4be-6559b44cf8ea + - d4eb12b7-d569-4248-a1d3-cd8e1a102ef2 status: code: 200 message: OK @@ -74,8 +76,8 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -91,7 +93,7 @@ interactions: content-type: - application/json date: - - Wed, 20 May 2020 06:53:35 GMT + - Sat, 13 Jun 2020 21:10:08 GMT expires: - '-1' pragma: @@ -119,9 +121,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.6.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.3; Windows 10) AZURECLI/2.7.0 x-ms-date: - - Wed, 20 May 2020 06:53:36 GMT + - Sat, 13 Jun 2020 21:10:09 GMT x-ms-version: - '2018-11-09' method: PUT @@ -133,11 +135,11 @@ interactions: content-length: - '0' date: - - Wed, 20 May 2020 06:53:38 GMT + - Sat, 13 Jun 2020 21:10:09 GMT etag: - - '"0x8D7FC8A867B1357"' + - '"0x8D80FDE27AB3041"' last-modified: - - Wed, 20 May 2020 06:53:38 GMT + - Sat, 13 Jun 2020 21:10:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -161,8 +163,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -178,7 +180,7 @@ interactions: content-type: - application/json date: - - Wed, 20 May 2020 06:53:39 GMT + - Sat, 13 Jun 2020 21:10:09 GMT expires: - '-1' pragma: @@ -244,24 +246,24 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-05-20T06:53:41.9422017Z","duration":"PT0S","correlationId":"96e0c675-880e-479e-9121-284e15271b84","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-06-13T21:10:10.581185Z","duration":"PT0S","correlationId":"71f251c6-de70-44fa-87d7-e633e048922c","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"}]}}' headers: cache-control: - no-cache content-length: - - '2172' + - '2171' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:42 GMT + - Sat, 13 Jun 2020 21:10:10 GMT expires: - '-1' pragma: @@ -325,18 +327,18 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-05-20T06:53:45.9085245Z","duration":"PT1.7872247S","correlationId":"e603ac92-00b8-42d5-8423-74cf96442e8a","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-06-13T21:10:11.0629377Z","duration":"PT0.1200979S","correlationId":"34cf716c-cae3-4dc6-8826-d9de5c0c8510","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 cache-control: - no-cache content-length: @@ -344,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:47 GMT + - Sat, 13 Jun 2020 21:10:10 GMT expires: - '-1' pragma: @@ -354,7 +356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -372,10 +374,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -387,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:18 GMT + - Sat, 13 Jun 2020 21:10:41 GMT expires: - '-1' pragma: @@ -415,10 +417,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -430,7 +432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:48 GMT + - Sat, 13 Jun 2020 21:11:10 GMT expires: - '-1' pragma: @@ -458,10 +460,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -473,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:55:18 GMT + - Sat, 13 Jun 2020 21:11:41 GMT expires: - '-1' pragma: @@ -501,10 +503,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -516,7 +518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:55:49 GMT + - Sat, 13 Jun 2020 21:12:10 GMT expires: - '-1' pragma: @@ -544,10 +546,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -559,7 +561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:56:20 GMT + - Sat, 13 Jun 2020 21:12:41 GMT expires: - '-1' pragma: @@ -587,53 +589,10 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 May 2020 06:56:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - deployment group create - Connection: - - keep-alive - ParameterSetName: - - --name -g --template-file --parameters --parameters - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586116492613563145?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586095242745347738?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -645,7 +604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:21 GMT + - Sat, 13 Jun 2020 21:13:11 GMT expires: - '-1' pragma: @@ -673,22 +632,22 @@ interactions: ParameterSetName: - --name -g --template-file --parameters --parameters User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-05-20T06:57:10.0624774Z","duration":"PT3M25.9411776S","correlationId":"e603ac92-00b8-42d5-8423-74cf96442e8a","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/identity-hub-deployment","name":"identity-hub-deployment","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11350779003338463755","parameters":{"name":{"type":"String","value":"identity-test-hub-cli"},"location":{"type":"String","value":"westus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-06-13T21:13:01.9316028Z","duration":"PT2M50.988763S","correlationId":"34cf716c-cae3-4dc6-8826-d9de5c0c8510","providers":[{"namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"IotHubs","locations":["westus2"]}]},{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","resourceType":"Microsoft.Devices/IotHubs","resourceName":"identity-test-hub-cli"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/updateIotHubWithKeyEncryptionKey","resourceType":"Microsoft.Resources/deployments","resourceName":"updateIotHubWithKeyEncryptionKey"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli"}]}}' headers: cache-control: - no-cache content-length: - - '1743' + - '1742' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:21 GMT + - Sat, 13 Jun 2020 21:13:11 GMT expires: - '-1' pragma: @@ -716,25 +675,129 @@ interactions: ParameterSetName: - --name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OSo0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIp1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' headers: cache-control: - no-cache content-length: - - '1846' + - '141745' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:24 GMT + - Sat, 13 Jun 2020 21:13:22 GMT expires: - '-1' pragma: @@ -766,25 +829,129 @@ interactions: ParameterSetName: - -n --fsa --fcs --fc --fn --fnt --fnd --rd --ct --cdd --ft --fld --fd User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OSo0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIp1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' headers: cache-control: - no-cache content-length: - - '1846' + - '141745' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:26 GMT + - Sat, 13 Jun 2020 21:13:35 GMT expires: - '-1' pragma: @@ -816,25 +983,129 @@ interactions: ParameterSetName: - -n --fsa --fcs --fc --fn --fnt --fnd --rd --ct --cdd --ft --fld --fd User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OSo0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIp1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' headers: cache-control: - no-cache content-length: - - '1846' + - '141745' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:28 GMT + - Sat, 13 Jun 2020 21:13:45 GMT expires: - '-1' pragma: @@ -853,7 +1124,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA3OSo0=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBIp1o=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -880,27 +1151,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA3OSo0=''}' + - '{''IF-MATCH'': ''AAAAABBIp1o=''}' ParameterSetName: - -n --fsa --fcs --fc --fn --fnt --fnd --rd --ct --cdd --ft --fld --fd User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OSo0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli-operationmonitoring","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ebf6eb2c-bb0d-4fa6-b9af-21a6f0b0880a-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, - 20 May 2020 06:56:32 GMT","ModifiedTime":"Wed, 20 May 2020 06:56:32 GMT"},{"KeyName":"owner-a0e9d2a9-90be-4a5b-9206-2e811bd9960c-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 20 May 2020 06:56:32 GMT","ModifiedTime":"Wed, 20 May 2020 06:56:32 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, - 20 May 2020 06:56:32 GMT","ModifiedTime":"Wed, 20 May 2020 06:56:32 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, - 20 May 2020 06:56:32 GMT","ModifiedTime":"Wed, 20 May 2020 06:56:32 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIp1o=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli-operationmonitoring","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ee529045-39b1-42bb-ba21-6172bddfb687-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:12:47 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:12:47 GMT"},{"KeyName":"owner-ae330b91-25f2-4f4c-8c5b-e936a92f6b0d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:12:47 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:12:47 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:12:47 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:12:47 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:12:47 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:12:47 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTRlMzY1NDctMzU0Yi00MmZmLTgzNzItYjdiMTRkMDJlODli?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDdiMTFhOTYtYmVjYS00YmQ1LWFjYmUtYzlkMmVkYzBmNzcw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -908,7 +1179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:57:35 GMT + - Sat, 13 Jun 2020 21:13:49 GMT expires: - '-1' pragma: @@ -938,10 +1209,10 @@ interactions: ParameterSetName: - -n --fsa --fcs --fc --fn --fnt --fnd --rd --ct --cdd --ft --fld --fd User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTRlMzY1NDctMzU0Yi00MmZmLTgzNzItYjdiMTRkMDJlODli?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDdiMTFhOTYtYmVjYS00YmQ1LWFjYmUtYzlkMmVkYzBmNzcw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -953,7 +1224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:06 GMT + - Sat, 13 Jun 2020 21:14:19 GMT expires: - '-1' pragma: @@ -985,14 +1256,14 @@ interactions: ParameterSetName: - -n --fsa --fcs --fc --fn --fnt --fnd --rd --ct --cdd --ft --fld --fd User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OS9w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIxck=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache @@ -1001,7 +1272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:07 GMT + - Sat, 13 Jun 2020 21:14:20 GMT expires: - '-1' pragma: @@ -1033,8 +1304,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -1048,7 +1319,7 @@ interactions: content-length: - '0' date: - - Wed, 20 May 2020 06:58:08 GMT + - Sat, 13 Jun 2020 21:14:20 GMT expires: - '-1' pragma: @@ -1078,8 +1349,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -1096,7 +1367,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:10 GMT + - Sat, 13 Jun 2020 21:14:21 GMT expires: - '-1' pragma: @@ -1112,7 +1383,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1130,16 +1401,16 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OS9w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIxck=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache @@ -1148,7 +1419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:11 GMT + - Sat, 13 Jun 2020 21:14:21 GMT expires: - '-1' pragma: @@ -1167,12 +1438,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA3OS9w=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBIxck=", "properties": {"ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"endpointUri": "eh://test", "entityPath": "entity", "authenticationType": "identitybased", "name": "EventHubIdentityEndpoint", - "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "resourceGroup": "clitest.rg000001"}], + "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", @@ -1197,27 +1468,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA3OS9w=''}' + - '{''IF-MATCH'': ''AAAAABBIxck=''}' ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OS9w=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli-operationmonitoring","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ebf6eb2c-bb0d-4fa6-b9af-21a6f0b0880a-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Wed, - 20 May 2020 06:57:46 GMT","ModifiedTime":"Wed, 20 May 2020 06:57:46 GMT"},{"KeyName":"owner-a0e9d2a9-90be-4a5b-9206-2e811bd9960c-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 20 May 2020 06:57:46 GMT","ModifiedTime":"Wed, 20 May 2020 06:57:46 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, - 20 May 2020 06:57:46 GMT","ModifiedTime":"Wed, 20 May 2020 06:57:46 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Wed, - 20 May 2020 06:57:46 GMT","ModifiedTime":"Wed, 20 May 2020 06:57:46 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"abe950ad-45af-4c5e-8792-57205f121157","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBIxck=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli-operationmonitoring","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-ee529045-39b1-42bb-ba21-6172bddfb687-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:14:02 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:14:02 GMT"},{"KeyName":"owner-ae330b91-25f2-4f4c-8c5b-e936a92f6b0d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:14:02 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:14:02 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:14:02 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:14:02 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:14:02 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:14:02 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"37771953-8db3-4386-965c-6bbfaa571f36","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTZmNGRhNjItMThlMC00NzY0LWE1YzAtYWUxOTg1NGVhNDEx?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDMxZTNmZWEtZDNmYi00ODk1LTlkNzEtYjIzMDA0ZTFjZTg4?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1225,7 +1496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:17 GMT + - Sat, 13 Jun 2020 21:14:24 GMT expires: - '-1' pragma: @@ -1255,10 +1526,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTZmNGRhNjItMThlMC00NzY0LWE1YzAtYWUxOTg1NGVhNDEx?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDMxZTNmZWEtZDNmYi00ODk1LTlkNzEtYjIzMDA0ZTFjZTg4?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1270,7 +1541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:48 GMT + - Sat, 13 Jun 2020 21:14:54 GMT expires: - '-1' pragma: @@ -1302,14 +1573,14 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OTOY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"abe950ad-45af-4c5e-8792-57205f121157","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBI6u8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"37771953-8db3-4386-965c-6bbfaa571f36","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache @@ -1318,7 +1589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:49 GMT + - Sat, 13 Jun 2020 21:14:55 GMT expires: - '-1' pragma: @@ -1356,8 +1627,8 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -1365,15 +1636,15 @@ interactions: response: body: string: "{\r\n \"name\": \"test-iot-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet\",\r\n - \ \"etag\": \"W/\\\"927a6824-7f0c-4e2f-a37b-3988a8f011c4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"02e0d4f0-1952-4f12-aa02-788595885967\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"53214d38-0c78-4ec3-962d-2d7265425a21\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2a4e442c-9929-4e8d-9bab-b0c0112dc359\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"927a6824-7f0c-4e2f-a37b-3988a8f011c4\\\"\",\r\n + \ \"etag\": \"W/\\\"02e0d4f0-1952-4f12-aa02-788595885967\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1384,7 +1655,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e1c58bd0-20a3-478f-a4ba-1ddf2ff2ad80?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc8d5de9-ef04-4681-a936-03d1fc73f990?api-version=2020-04-01 cache-control: - no-cache content-length: @@ -1392,7 +1663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:58:57 GMT + - Sat, 13 Jun 2020 21:14:57 GMT expires: - '-1' pragma: @@ -1405,9 +1676,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d2de754-77b2-47f3-bfa0-c3ed98ae3ef7 + - 79ce086a-51ca-4880-a30e-18c9a29d1ca9 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1425,10 +1696,10 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e1c58bd0-20a3-478f-a4ba-1ddf2ff2ad80?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc8d5de9-ef04-4681-a936-03d1fc73f990?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1440,7 +1711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:01 GMT + - Sat, 13 Jun 2020 21:15:00 GMT expires: - '-1' pragma: @@ -1457,7 +1728,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63a49c3a-ff49-448f-818d-8be71f7399da + - 3fbc8e26-01bf-488b-95db-f5f5acc34f0f status: code: 200 message: OK @@ -1475,22 +1746,22 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet?api-version=2020-04-01 response: body: string: "{\r\n \"name\": \"test-iot-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet\",\r\n - \ \"etag\": \"W/\\\"83757de5-2a62-4a20-a247-a6e94c97504a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9bef0b93-2f46-43fd-a6c8-85caf1878ecf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"53214d38-0c78-4ec3-962d-2d7265425a21\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2a4e442c-9929-4e8d-9bab-b0c0112dc359\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"83757de5-2a62-4a20-a247-a6e94c97504a\\\"\",\r\n + \ \"etag\": \"W/\\\"9bef0b93-2f46-43fd-a6c8-85caf1878ecf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1505,9 +1776,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:01 GMT + - Sat, 13 Jun 2020 21:15:00 GMT etag: - - W/"83757de5-2a62-4a20-a247-a6e94c97504a" + - W/"9bef0b93-2f46-43fd-a6c8-85caf1878ecf" expires: - '-1' pragma: @@ -1524,7 +1795,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef7fd508-5427-42cf-bbdb-7b02d34700ae + - 260a14d1-cad5-424b-b52a-071f03d7e62f status: code: 200 message: OK @@ -1542,8 +1813,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -1551,7 +1822,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"83757de5-2a62-4a20-a247-a6e94c97504a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"9bef0b93-2f46-43fd-a6c8-85caf1878ecf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1564,9 +1835,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:03 GMT + - Sat, 13 Jun 2020 21:15:00 GMT etag: - - W/"83757de5-2a62-4a20-a247-a6e94c97504a" + - W/"9bef0b93-2f46-43fd-a6c8-85caf1878ecf" expires: - '-1' pragma: @@ -1583,7 +1854,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8fdf4e43-94e3-48da-b749-cb790b45c526 + - 995c2a7c-bd67-4867-9b0c-6531df851f37 status: code: 200 message: OK @@ -1607,8 +1878,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -1616,14 +1887,14 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"22d963f5-f937-4ccc-a1ca-f6136800cfd4\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"ce648ebc-285a-4815-b070-c6f4ecf4319e\\\"\",\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}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a2cf101-ba94-4980-9269-0f66e35c4d1b?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0de1f127-7960-4686-b754-c817f19429c4?api-version=2020-04-01 cache-control: - no-cache content-length: @@ -1631,7 +1902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:04 GMT + - Sat, 13 Jun 2020 21:15:01 GMT expires: - '-1' pragma: @@ -1648,9 +1919,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e712276a-e807-40bc-bbdf-242cbb0e0250 + - 9dec6097-6c9d-432b-afea-a70c2b321700 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1668,10 +1939,10 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a2cf101-ba94-4980-9269-0f66e35c4d1b?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0de1f127-7960-4686-b754-c817f19429c4?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1683,7 +1954,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:08 GMT + - Sat, 13 Jun 2020 21:15:04 GMT expires: - '-1' pragma: @@ -1700,7 +1971,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1be17b38-e509-4db3-bd60-881fbb7b3e0e + - 7925f24f-09e6-4733-a9ce-d341e51cd180 status: code: 200 message: OK @@ -1718,14 +1989,14 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1?api-version=2020-04-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"bbd6c5f7-040d-45c2-a71f-3063365c7de5\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"40a53cae-cebd-46b5-984d-99ed1cd0e9e1\\\"\",\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\": @@ -1738,9 +2009,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:09 GMT + - Sat, 13 Jun 2020 21:15:04 GMT etag: - - W/"bbd6c5f7-040d-45c2-a71f-3063365c7de5" + - W/"40a53cae-cebd-46b5-984d-99ed1cd0e9e1" expires: - '-1' pragma: @@ -1757,7 +2028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce616b30-2f66-4c6b-919c-7c06c131cb47 + - 96d56ee6-4173-4db8-96d4-3469b7f85b6f status: code: 200 message: OK @@ -1775,7 +2046,7 @@ interactions: ParameterSetName: - --type -n -g User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateLinkResources?api-version=2020-03-01 response: @@ -1789,7 +2060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:11 GMT + - Sat, 13 Jun 2020 21:15:05 GMT expires: - '-1' pragma: @@ -1821,8 +2092,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -1836,7 +2107,7 @@ interactions: content-length: - '0' date: - - Wed, 20 May 2020 06:59:12 GMT + - Sat, 13 Jun 2020 21:15:05 GMT expires: - '-1' pragma: @@ -1866,8 +2137,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -1884,7 +2155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:13 GMT + - Sat, 13 Jun 2020 21:15:06 GMT expires: - '-1' pragma: @@ -1918,16 +2189,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OTOY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"abe950ad-45af-4c5e-8792-57205f121157","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBI6u8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"37771953-8db3-4386-965c-6bbfaa571f36","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache @@ -1936,7 +2207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:14 GMT + - Sat, 13 Jun 2020 21:15:07 GMT expires: - '-1' pragma: @@ -1975,8 +2246,8 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -1984,13 +2255,13 @@ interactions: response: body: string: "{\r\n \"name\": \"iot-private-endpoint\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint\",\r\n - \ \"etag\": \"W/\\\"a934e686-969b-41a2-9d2f-4dee21b9f8c8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a7748823-7805-4d36-b03e-0046cb200d91\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"9053ed45-db3c-4375-a2e9-6651532f40eb\",\r\n \"privateLinkServiceConnections\": + \"63293cc9-b9e1-4c9e-a5f0-2a6afb10ab61\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"iot-private-endpoint-connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint/privateLinkServiceConnections/iot-private-endpoint-connection\",\r\n - \ \"etag\": \"W/\\\"a934e686-969b-41a2-9d2f-4dee21b9f8c8\\\"\",\r\n + \ \"etag\": \"W/\\\"a7748823-7805-4d36-b03e-0046cb200d91\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli\",\r\n \ \"groupIds\": [\r\n \"iotHub\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1999,13 +2270,13 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.40539655-281d-4b13-8a36-451c61a513fc\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.68e7157f-ce3f-4a8b-a5a5-2b15ff1a218c\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 cache-control: - no-cache content-length: @@ -2013,7 +2284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:24 GMT + - Sat, 13 Jun 2020 21:15:09 GMT expires: - '-1' pragma: @@ -2026,9 +2297,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4a7802e-a2be-4ea4-a1d7-21fc7703bab4 + - 135de123-cc4a-45d3-80c0-1e77d83d5553 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -2047,10 +2318,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2062,7 +2333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:35 GMT + - Sat, 13 Jun 2020 21:15:19 GMT expires: - '-1' pragma: @@ -2079,7 +2350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8580e5bc-206e-408d-bfce-38bb5131e6d8 + - 454da695-dd49-4b1e-b91b-1671b1ea0ed5 status: code: 200 message: OK @@ -2098,10 +2369,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2113,7 +2384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:46 GMT + - Sat, 13 Jun 2020 21:15:29 GMT expires: - '-1' pragma: @@ -2130,7 +2401,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7e3f9fa-0214-4690-9d15-a4ca470e767e + - 9c5bea61-1c17-45d8-b92c-1580ca832c92 status: code: 200 message: OK @@ -2149,10 +2420,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2164,7 +2435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:59:56 GMT + - Sat, 13 Jun 2020 21:15:39 GMT expires: - '-1' pragma: @@ -2181,7 +2452,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6edfc6eb-8855-4d7c-bd35-2e903caedd77 + - 2e082cf0-56b2-4428-a8c6-abd0cc59b18f status: code: 200 message: OK @@ -2200,10 +2471,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2215,7 +2486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:06 GMT + - Sat, 13 Jun 2020 21:15:49 GMT expires: - '-1' pragma: @@ -2232,7 +2503,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cafb0cc7-a092-44dd-aa68-b4c7a924758e + - 1df413ff-5670-4304-9ad7-bbc46fc01f7a status: code: 200 message: OK @@ -2251,10 +2522,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2266,7 +2537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:17 GMT + - Sat, 13 Jun 2020 21:15:59 GMT expires: - '-1' pragma: @@ -2283,7 +2554,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c65f1515-8e50-4227-b24b-bb9a1114b2b1 + - 59e51354-f467-4c95-9daf-7119f773d74c status: code: 200 message: OK @@ -2302,10 +2573,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2317,7 +2588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:27 GMT + - Sat, 13 Jun 2020 21:16:09 GMT expires: - '-1' pragma: @@ -2334,7 +2605,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1bbae01d-6d6a-46b1-96b0-49da816d0992 + - 7977ca9e-ea6d-49d9-bd74-823ed8e7c659 status: code: 200 message: OK @@ -2353,10 +2624,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2368,7 +2639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:37 GMT + - Sat, 13 Jun 2020 21:16:19 GMT expires: - '-1' pragma: @@ -2385,7 +2656,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d36a4876-88d4-4d1c-a7a4-e56fdfd525bb + - 8a2ff360-b012-411f-9b15-7e2f174943a2 status: code: 200 message: OK @@ -2404,10 +2675,61 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02fd7de6-02ba-4fe0-a273-9eaa5bfecd22?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 13 Jun 2020 21:16:30 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ad5a204b-bc34-4c5c-a894-8c043facba79 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/871fd2e7-0118-4274-a34a-534dd1ed5387?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2419,7 +2741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:47 GMT + - Sat, 13 Jun 2020 21:16:40 GMT expires: - '-1' pragma: @@ -2436,7 +2758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7a8e16d-73af-49e2-a46b-47ffcd9af3f7 + - d4f1d66e-9741-4ab5-8c6c-59fd6352b19c status: code: 200 message: OK @@ -2455,20 +2777,20 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint?api-version=2020-04-01 response: body: string: "{\r\n \"name\": \"iot-private-endpoint\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint\",\r\n - \ \"etag\": \"W/\\\"97b48800-7f2b-4737-9995-25e19d3d11a3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"88fc5416-bae5-401d-9377-6a9641cbc209\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"9053ed45-db3c-4375-a2e9-6651532f40eb\",\r\n \"privateLinkServiceConnections\": + \"63293cc9-b9e1-4c9e-a5f0-2a6afb10ab61\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"iot-private-endpoint-connection\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint/privateLinkServiceConnections/iot-private-endpoint-connection\",\r\n - \ \"etag\": \"W/\\\"97b48800-7f2b-4737-9995-25e19d3d11a3\\\"\",\r\n + \ \"etag\": \"W/\\\"88fc5416-bae5-401d-9377-6a9641cbc209\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli\",\r\n \ \"groupIds\": [\r\n \"iotHub\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -2477,7 +2799,7 @@ interactions: \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet/subnets/subnet1\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.40539655-281d-4b13-8a36-451c61a513fc\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.68e7157f-ce3f-4a8b-a5a5-2b15ff1a218c\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"identity-test-hub-cli.azure-devices.net\",\r\n \"ipAddresses\": [\r\n \ \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" @@ -2489,9 +2811,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:48 GMT + - Sat, 13 Jun 2020 21:16:40 GMT etag: - - W/"97b48800-7f2b-4737-9995-25e19d3d11a3" + - W/"88fc5416-bae5-401d-9377-6a9641cbc209" expires: - '-1' pragma: @@ -2508,7 +2830,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57331552-4664-477d-9944-a1ed138bc621 + - 4ebb77a8-87aa-41c5-bd58-0cff4de44aea status: code: 200 message: OK @@ -2526,8 +2848,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -2541,7 +2863,7 @@ interactions: content-length: - '0' date: - - Wed, 20 May 2020 07:00:50 GMT + - Sat, 13 Jun 2020 21:16:40 GMT expires: - '-1' pragma: @@ -2571,8 +2893,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -2589,7 +2911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:50 GMT + - Sat, 13 Jun 2020 21:16:41 GMT expires: - '-1' pragma: @@ -2623,16 +2945,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAAAA3OUOU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3474890-cfb4229472.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"abe950ad-45af-4c5e-8792-57205f121157","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"c7ec43e4-637a-4cfe-94ba-4861ac3311bb","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBJHag=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3621343-ff9c6cef1c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"37771953-8db3-4386-965c-6bbfaa571f36","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"5a7fad6b-b048-46b3-9cd9-37882abdbd4f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' headers: cache-control: - no-cache @@ -2641,7 +2963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:51 GMT + - Sat, 13 Jun 2020 21:16:41 GMT expires: - '-1' pragma: @@ -2673,12 +2995,12 @@ interactions: ParameterSetName: - --type -n -g User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]}' + string: '{"value":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]}' headers: cache-control: - no-cache @@ -2687,7 +3009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:54 GMT + - Sat, 13 Jun 2020 21:16:42 GMT expires: - '-1' pragma: @@ -2719,12 +3041,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2733,7 +3055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:56 GMT + - Sat, 13 Jun 2020 21:16:43 GMT expires: - '-1' pragma: @@ -2754,8 +3076,8 @@ interactions: - request: body: 'b''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "Approving - endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", - "name": "identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", + "name": "identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}''' headers: Accept: @@ -2773,13 +3095,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approving - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2788,7 +3110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:00:57 GMT + - Sat, 13 Jun 2020 21:16:44 GMT expires: - '-1' pragma: @@ -2804,7 +3126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -2822,12 +3144,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2836,7 +3158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:01:08 GMT + - Sat, 13 Jun 2020 21:16:54 GMT expires: - '-1' pragma: @@ -2868,12 +3190,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2882,7 +3204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:01:19 GMT + - Sat, 13 Jun 2020 21:17:05 GMT expires: - '-1' pragma: @@ -2914,12 +3236,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2928,7 +3250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:01:31 GMT + - Sat, 13 Jun 2020 21:17:15 GMT expires: - '-1' pragma: @@ -2960,12 +3282,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -2974,7 +3296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:01:42 GMT + - Sat, 13 Jun 2020 21:17:26 GMT expires: - '-1' pragma: @@ -3006,12 +3328,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3020,7 +3342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:01:53 GMT + - Sat, 13 Jun 2020 21:17:37 GMT expires: - '-1' pragma: @@ -3052,12 +3374,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3066,7 +3388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:02:06 GMT + - Sat, 13 Jun 2020 21:17:47 GMT expires: - '-1' pragma: @@ -3098,12 +3420,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3112,7 +3434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:02:18 GMT + - Sat, 13 Jun 2020 21:17:57 GMT expires: - '-1' pragma: @@ -3144,12 +3466,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3158,7 +3480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:02:30 GMT + - Sat, 13 Jun 2020 21:18:08 GMT expires: - '-1' pragma: @@ -3190,12 +3512,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3204,7 +3526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:02:42 GMT + - Sat, 13 Jun 2020 21:18:19 GMT expires: - '-1' pragma: @@ -3236,12 +3558,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3250,7 +3572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:02:52 GMT + - Sat, 13 Jun 2020 21:18:29 GMT expires: - '-1' pragma: @@ -3282,12 +3604,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3296,7 +3618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:03:04 GMT + - Sat, 13 Jun 2020 21:18:40 GMT expires: - '-1' pragma: @@ -3328,12 +3650,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3342,7 +3664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:03:15 GMT + - Sat, 13 Jun 2020 21:18:50 GMT expires: - '-1' pragma: @@ -3374,12 +3696,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3388,7 +3710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:03:26 GMT + - Sat, 13 Jun 2020 21:19:01 GMT expires: - '-1' pragma: @@ -3420,12 +3742,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3434,7 +3756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:03:38 GMT + - Sat, 13 Jun 2020 21:19:11 GMT expires: - '-1' pragma: @@ -3466,12 +3788,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3480,7 +3802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:03:49 GMT + - Sat, 13 Jun 2020 21:19:21 GMT expires: - '-1' pragma: @@ -3512,12 +3834,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3526,7 +3848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:00 GMT + - Sat, 13 Jun 2020 21:19:33 GMT expires: - '-1' pragma: @@ -3558,12 +3880,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3572,7 +3894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:12 GMT + - Sat, 13 Jun 2020 21:19:43 GMT expires: - '-1' pragma: @@ -3604,12 +3926,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3618,7 +3940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:22 GMT + - Sat, 13 Jun 2020 21:19:53 GMT expires: - '-1' pragma: @@ -3650,12 +3972,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3664,7 +3986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:34 GMT + - Sat, 13 Jun 2020 21:20:03 GMT expires: - '-1' pragma: @@ -3696,12 +4018,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3710,7 +4032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:45 GMT + - Sat, 13 Jun 2020 21:20:14 GMT expires: - '-1' pragma: @@ -3742,12 +4064,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3756,7 +4078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:47 GMT + - Sat, 13 Jun 2020 21:20:15 GMT expires: - '-1' pragma: @@ -3777,8 +4099,8 @@ interactions: - request: body: 'b''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "Approving - endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", - "name": "identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", + "name": "identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}''' headers: Accept: @@ -3796,13 +4118,13 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approving - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3811,7 +4133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:04:48 GMT + - Sat, 13 Jun 2020 21:20:15 GMT expires: - '-1' pragma: @@ -3827,7 +4149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -3845,12 +4167,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3859,7 +4181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:05:01 GMT + - Sat, 13 Jun 2020 21:20:27 GMT expires: - '-1' pragma: @@ -3891,12 +4213,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3905,7 +4227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:05:14 GMT + - Sat, 13 Jun 2020 21:20:36 GMT expires: - '-1' pragma: @@ -3937,12 +4259,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3951,7 +4273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:05:25 GMT + - Sat, 13 Jun 2020 21:20:47 GMT expires: - '-1' pragma: @@ -3983,12 +4305,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -3997,7 +4319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:05:37 GMT + - Sat, 13 Jun 2020 21:20:57 GMT expires: - '-1' pragma: @@ -4029,12 +4351,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4043,7 +4365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:05:48 GMT + - Sat, 13 Jun 2020 21:21:09 GMT expires: - '-1' pragma: @@ -4075,12 +4397,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4089,7 +4411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:06:01 GMT + - Sat, 13 Jun 2020 21:21:18 GMT expires: - '-1' pragma: @@ -4121,12 +4443,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4135,7 +4457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:06:12 GMT + - Sat, 13 Jun 2020 21:21:29 GMT expires: - '-1' pragma: @@ -4167,12 +4489,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4181,7 +4503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:06:25 GMT + - Sat, 13 Jun 2020 21:21:40 GMT expires: - '-1' pragma: @@ -4213,12 +4535,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4227,7 +4549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:06:37 GMT + - Sat, 13 Jun 2020 21:21:51 GMT expires: - '-1' pragma: @@ -4259,12 +4581,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4273,7 +4595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:06:48 GMT + - Sat, 13 Jun 2020 21:22:01 GMT expires: - '-1' pragma: @@ -4305,12 +4627,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4319,7 +4641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:00 GMT + - Sat, 13 Jun 2020 21:22:11 GMT expires: - '-1' pragma: @@ -4351,12 +4673,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4365,7 +4687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:12 GMT + - Sat, 13 Jun 2020 21:22:22 GMT expires: - '-1' pragma: @@ -4397,12 +4719,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4411,7 +4733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:24 GMT + - Sat, 13 Jun 2020 21:22:33 GMT expires: - '-1' pragma: @@ -4443,12 +4765,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4457,7 +4779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:37 GMT + - Sat, 13 Jun 2020 21:22:43 GMT expires: - '-1' pragma: @@ -4489,12 +4811,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4503,7 +4825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:48 GMT + - Sat, 13 Jun 2020 21:22:54 GMT expires: - '-1' pragma: @@ -4535,12 +4857,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4549,7 +4871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:07:59 GMT + - Sat, 13 Jun 2020 21:23:04 GMT expires: - '-1' pragma: @@ -4581,12 +4903,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4595,7 +4917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:12 GMT + - Sat, 13 Jun 2020 21:23:15 GMT expires: - '-1' pragma: @@ -4627,12 +4949,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4641,7 +4963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:24 GMT + - Sat, 13 Jun 2020 21:23:25 GMT expires: - '-1' pragma: @@ -4673,12 +4995,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4687,7 +5009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:35 GMT + - Sat, 13 Jun 2020 21:23:36 GMT expires: - '-1' pragma: @@ -4719,12 +5041,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4733,7 +5055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:47 GMT + - Sat, 13 Jun 2020 21:23:47 GMT expires: - '-1' pragma: @@ -4765,12 +5087,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: - string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4779,7 +5101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:49 GMT + - Sat, 13 Jun 2020 21:23:47 GMT expires: - '-1' pragma: @@ -4800,8 +5122,8 @@ interactions: - request: body: 'b''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": "Rejecting - endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", - "name": "identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", + "name": "identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}''' headers: Accept: @@ -4819,16 +5141,16 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTFlZTEyOWMtMDRhNi00ODdmLTgyNGMtZGY0NmZkMTlhODNm?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjUxODc0ODAtMmQ2My00OTk1LWJjMTQtMDQ2NWU0MGI1NTYw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -4836,7 +5158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:08:54 GMT + - Sat, 13 Jun 2020 21:23:51 GMT expires: - '-1' pragma: @@ -4848,7 +5170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -4866,13 +5188,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4881,7 +5203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:09:05 GMT + - Sat, 13 Jun 2020 21:24:02 GMT expires: - '-1' pragma: @@ -4913,13 +5235,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4928,7 +5250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:09:17 GMT + - Sat, 13 Jun 2020 21:24:12 GMT expires: - '-1' pragma: @@ -4960,13 +5282,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -4975,7 +5297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:09:28 GMT + - Sat, 13 Jun 2020 21:24:22 GMT expires: - '-1' pragma: @@ -5007,13 +5329,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5022,7 +5344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:09:41 GMT + - Sat, 13 Jun 2020 21:24:33 GMT expires: - '-1' pragma: @@ -5054,13 +5376,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5069,7 +5391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:09:52 GMT + - Sat, 13 Jun 2020 21:24:43 GMT expires: - '-1' pragma: @@ -5101,13 +5423,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5116,7 +5438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:10:04 GMT + - Sat, 13 Jun 2020 21:24:54 GMT expires: - '-1' pragma: @@ -5148,13 +5470,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5163,7 +5485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:10:16 GMT + - Sat, 13 Jun 2020 21:25:04 GMT expires: - '-1' pragma: @@ -5195,13 +5517,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5210,7 +5532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:10:27 GMT + - Sat, 13 Jun 2020 21:25:15 GMT expires: - '-1' pragma: @@ -5242,13 +5564,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5257,7 +5579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:10:40 GMT + - Sat, 13 Jun 2020 21:25:25 GMT expires: - '-1' pragma: @@ -5289,13 +5611,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5304,7 +5626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:10:52 GMT + - Sat, 13 Jun 2020 21:25:36 GMT expires: - '-1' pragma: @@ -5336,13 +5658,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5351,7 +5673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:11:04 GMT + - Sat, 13 Jun 2020 21:25:46 GMT expires: - '-1' pragma: @@ -5383,13 +5705,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5398,7 +5720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:11:15 GMT + - Sat, 13 Jun 2020 21:25:58 GMT expires: - '-1' pragma: @@ -5430,13 +5752,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5445,7 +5767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:11:27 GMT + - Sat, 13 Jun 2020 21:26:07 GMT expires: - '-1' pragma: @@ -5477,13 +5799,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5492,7 +5814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:11:39 GMT + - Sat, 13 Jun 2020 21:26:18 GMT expires: - '-1' pragma: @@ -5524,13 +5846,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5539,7 +5861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:11:52 GMT + - Sat, 13 Jun 2020 21:26:29 GMT expires: - '-1' pragma: @@ -5571,13 +5893,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5586,7 +5908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:03 GMT + - Sat, 13 Jun 2020 21:26:39 GMT expires: - '-1' pragma: @@ -5618,13 +5940,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5633,7 +5955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:15 GMT + - Sat, 13 Jun 2020 21:26:50 GMT expires: - '-1' pragma: @@ -5665,13 +5987,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5680,7 +6002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:29 GMT + - Sat, 13 Jun 2020 21:27:00 GMT expires: - '-1' pragma: @@ -5712,13 +6034,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5727,7 +6049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:40 GMT + - Sat, 13 Jun 2020 21:27:11 GMT expires: - '-1' pragma: @@ -5759,13 +6081,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5774,7 +6096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:53 GMT + - Sat, 13 Jun 2020 21:27:22 GMT expires: - '-1' pragma: @@ -5806,13 +6128,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: '{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejecting - endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","name":"identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","name":"identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5821,7 +6143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:55 GMT + - Sat, 13 Jun 2020 21:27:23 GMT expires: - '-1' pragma: @@ -5855,15 +6177,15 @@ interactions: ParameterSetName: - --type -n --resource-name -g -y User-Agent: - - AZURECLI/2.6.0 + - AZURECLI/2.7.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.23687d50-a984-4ef5-99f0-0f39c8a1dafc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/privateEndpointConnections/identity-test-hub-cli.250f47f3-c710-41f4-a57e-dd2d5489713b?api-version=2020-03-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjUxZTE4YzUtMzM5OS00YTM0LTlhYWMtZjU2MDAzYWU2ZGRj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTI3ZTJjMGYtMmUyNC00NzRmLTgyM2EtNjU2MGExYmJhZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -5871,11 +6193,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 07:12:59 GMT + - Sat, 13 Jun 2020 21:27:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjUxZTE4YzUtMzM5OS00YTM0LTlhYWMtZjU2MDAzYWU2ZGRj?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTI3ZTJjMGYtMmUyNC00NzRmLTgyM2EtNjU2MGExYmJhZmFi?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -5885,7 +6207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml index 2a9c0c616cf..ee37a02e812 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_iot_hub.yaml @@ -13,24 +13,26 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Storage/storageAccounts/andbuctestadu","name":"andbuctestadu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-04T22:46:12.4529458Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-04T22:46:12.4529458Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-04T22:46:12.3904552Z","primaryEndpoints":{"blob":"https://andbuctestadu.blob.core.windows.net/","queue":"https://andbuctestadu.queue.core.windows.net/","table":"https://andbuctestadu.table.core.windows.net/","file":"https://andbuctestadu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/testiotextstor0","name":"testiotextstor0","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-19T00:06:41.0740705Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-19T00:06:41.0740705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-19T00:06:41.0115264Z","primaryEndpoints":{"dfs":"https://testiotextstor0.dfs.core.windows.net/","web":"https://testiotextstor0.z20.web.core.windows.net/","blob":"https://testiotextstor0.blob.core.windows.net/","queue":"https://testiotextstor0.queue.core.windows.net/","table":"https://testiotextstor0.table.core.windows.net/","file":"https://testiotextstor0.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgenpyh64i2vaonpqdgn7ru2hcncdbe5joaypwha5gblwp4tm3btc37r7stt4ke5oro/providers/Microsoft.Storage/storageAccounts/clitest662umriajhq72kjwq","name":"clitest662umriajhq72kjwq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:22:13.4890554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:22:13.4890554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T19:22:13.4109246Z","primaryEndpoints":{"blob":"https://clitest662umriajhq72kjwq.blob.core.windows.net/","queue":"https://clitest662umriajhq72kjwq.queue.core.windows.net/","table":"https://clitest662umriajhq72kjwq.table.core.windows.net/","file":"https://clitest662umriajhq72kjwq.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjy5npopkr23yhbtfeqhn2q5yjeoxxvgmglh3mzhmy5sej2fn4rwlx7fl5cw24b7rj/providers/Microsoft.Storage/storageAccounts/clitest7ukwq5v6aeur6q2wy","name":"clitest7ukwq5v6aeur6q2wy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:00:16.2526478Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:00:16.2526478Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T21:00:16.1745600Z","primaryEndpoints":{"blob":"https://clitest7ukwq5v6aeur6q2wy.blob.core.windows.net/","queue":"https://clitest7ukwq5v6aeur6q2wy.queue.core.windows.net/","table":"https://clitest7ukwq5v6aeur6q2wy.table.core.windows.net/","file":"https://clitest7ukwq5v6aeur6q2wy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghxa2cn4cu5pmuzncd6vm7gy6hbvimz7lq6ja5avdb6oyiplntcnmgm4opqf7ad3uk/providers/Microsoft.Storage/storageAccounts/clitesthnvnr4yk375krclrs","name":"clitesthnvnr4yk375krclrs","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:18:41.1715025Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:18:41.1715025Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T19:18:41.1090469Z","primaryEndpoints":{"blob":"https://clitesthnvnr4yk375krclrs.blob.core.windows.net/","queue":"https://clitesthnvnr4yk375krclrs.queue.core.windows.net/","table":"https://clitesthnvnr4yk375krclrs.table.core.windows.net/","file":"https://clitesthnvnr4yk375krclrs.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgurbg4xr6ox2wcidz43k2ee73pixkutolqq64xrrzojc7lqnp2bmhmfwia7wobufqo/providers/Microsoft.Storage/storageAccounts/clitests6zf7e3hnuzdqdlmw","name":"clitests6zf7e3hnuzdqdlmw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:11:20.7916200Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T19:11:20.7916200Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T19:11:20.7291526Z","primaryEndpoints":{"blob":"https://clitests6zf7e3hnuzdqdlmw.blob.core.windows.net/","queue":"https://clitests6zf7e3hnuzdqdlmw.queue.core.windows.net/","table":"https://clitests6zf7e3hnuzdqdlmw.table.core.windows.net/","file":"https://clitests6zf7e3hnuzdqdlmw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T00:50:25.2005455Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T00:50:25.2005455Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-15T00:50:25.1380703Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4a386d5eaea90x441ax826","name":"cs4a386d5eaea90x441ax826","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-25T17:05:48.4365854Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-25T17:05:48.4365854Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-25T17:05:48.3897448Z","primaryEndpoints":{"dfs":"https://cs4a386d5eaea90x441ax826.dfs.core.windows.net/","web":"https://cs4a386d5eaea90x441ax826.z22.web.core.windows.net/","blob":"https://cs4a386d5eaea90x441ax826.blob.core.windows.net/","queue":"https://cs4a386d5eaea90x441ax826.queue.core.windows.net/","table":"https://cs4a386d5eaea90x441ax826.table.core.windows.net/","file":"https://cs4a386d5eaea90x441ax826.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkstoragetest","name":"rkstoragetest","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkstoragetest/privateEndpointConnections/rkstoragetest.d3022f24-e7d2-4622-907a-1b0f713c271e","name":"rkstoragetest.d3022f24-e7d2-4622-907a-1b0f713c271e","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Network/privateEndpoints/upx-hub-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T19:12:01.2738834Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T19:12:01.2738834Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-10T19:12:01.2113542Z","primaryEndpoints":{"dfs":"https://rkstoragetest.dfs.core.windows.net/","web":"https://rkstoragetest.z5.web.core.windows.net/","blob":"https://rkstoragetest.blob.core.windows.net/","queue":"https://rkstoragetest.queue.core.windows.net/","table":"https://rkstoragetest.table.core.windows.net/","file":"https://rkstoragetest.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/aprilpnpbugbash","name":"aprilpnpbugbash","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T01:56:00.5610388Z","primaryEndpoints":{"dfs":"https://aprilpnpbugbash.dfs.core.windows.net/","web":"https://aprilpnpbugbash.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash.blob.core.windows.net/","queue":"https://aprilpnpbugbash.queue.core.windows.net/","table":"https://aprilpnpbugbash.table.core.windows.net/","file":"https://aprilpnpbugbash.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aprilpnpbugbash-secondary.dfs.core.windows.net/","web":"https://aprilpnpbugbash-secondary.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash-secondary.blob.core.windows.net/","queue":"https://aprilpnpbugbash-secondary.queue.core.windows.net/","table":"https://aprilpnpbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus01","name":"csharpiotuapeastus01","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T21:49:04.0979858Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus01.blob.core.windows.net/","queue":"https://csharpiotuapeastus01.queue.core.windows.net/","table":"https://csharpiotuapeastus01.table.core.windows.net/","file":"https://csharpiotuapeastus01.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag172","name":"mgtlabdiag172","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T00:56:53.3999654Z","primaryEndpoints":{"blob":"https://mgtlabdiag172.blob.core.windows.net/","queue":"https://mgtlabdiag172.queue.core.windows.net/","table":"https://mgtlabdiag172.table.core.windows.net/","file":"https://mgtlabdiag172.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Storage/storageAccounts/sqlimagestore","name":"sqlimagestore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T15:29:06.0354793Z","primaryEndpoints":{"dfs":"https://sqlimagestore.dfs.core.windows.net/","web":"https://sqlimagestore.z13.web.core.windows.net/","blob":"https://sqlimagestore.blob.core.windows.net/","queue":"https://sqlimagestore.queue.core.windows.net/","table":"https://sqlimagestore.table.core.windows.net/","file":"https://sqlimagestore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sqlimagestore-secondary.dfs.core.windows.net/","web":"https://sqlimagestore-secondary.z13.web.core.windows.net/","blob":"https://sqlimagestore-secondary.blob.core.windows.net/","queue":"https://sqlimagestore-secondary.queue.core.windows.net/","table":"https://sqlimagestore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/zadixon","name":"zadixon","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-06T00:29:47.9301744Z","primaryEndpoints":{"dfs":"https://zadixon.dfs.core.windows.net/","web":"https://zadixon.z13.web.core.windows.net/","blob":"https://zadixon.blob.core.windows.net/","queue":"https://zadixon.queue.core.windows.net/","table":"https://zadixon.table.core.windows.net/","file":"https://zadixon.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zadixon-secondary.dfs.core.windows.net/","web":"https://zadixon-secondary.z13.web.core.windows.net/","blob":"https://zadixon-secondary.blob.core.windows.net/","queue":"https://zadixon-secondary.queue.core.windows.net/","table":"https://zadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcrg982788/providers/Microsoft.Storage/storageAccounts/affanbc8902","name":"affanbc8902","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-30T19:24:20.1876978Z","primaryEndpoints":{"blob":"https://affanbc8902.blob.core.windows.net/","queue":"https://affanbc8902.queue.core.windows.net/","table":"https://affanbc8902.table.core.windows.net/","file":"https://affanbc8902.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb5grvzr77ostg5yigcrtug5uyr3rxf57kgmbz32h2c4ra3xnpjnezf4gw7ab5cywb/providers/Microsoft.Storage/storageAccounts/clitestt6qfsh65ioseruf7s","name":"clitestt6qfsh65ioseruf7s","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:09:48.1491805Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:09:48.1491805Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-13T21:09:48.0085098Z","primaryEndpoints":{"blob":"https://clitestt6qfsh65ioseruf7s.blob.core.windows.net/","queue":"https://clitestt6qfsh65ioseruf7s.queue.core.windows.net/","table":"https://clitestt6qfsh65ioseruf7s.table.core.windows.net/","file":"https://clitestt6qfsh65ioseruf7s.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:27:29.5399076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-13T21:27:29.5399076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-13T21:27:29.3836073Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000801b6df4","name":"cs410030000801b6df4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T19:06:51.2300069Z","primaryEndpoints":{"dfs":"https://cs410030000801b6df4.dfs.core.windows.net/","web":"https://cs410030000801b6df4.z22.web.core.windows.net/","blob":"https://cs410030000801b6df4.blob.core.windows.net/","queue":"https://cs410030000801b6df4.queue.core.windows.net/","table":"https://cs410030000801b6df4.table.core.windows.net/","file":"https://cs410030000801b6df4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cswestus1003bffda5eca634","name":"cswestus1003bffda5eca634","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T01:37:40.4375181Z","primaryEndpoints":{"dfs":"https://cswestus1003bffda5eca634.dfs.core.windows.net/","web":"https://cswestus1003bffda5eca634.z22.web.core.windows.net/","blob":"https://cswestus1003bffda5eca634.blob.core.windows.net/","queue":"https://cswestus1003bffda5eca634.queue.core.windows.net/","table":"https://cswestus1003bffda5eca634.table.core.windows.net/","file":"https://cswestus1003bffda5eca634.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_c_westus_c_westus/providers/Microsoft.Storage/storageAccounts/f9c418a6510b611ea9b85ae","name":"f9c418a6510b611ea9b85ae","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created-by":"azure"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-27T01:38:30.9156217Z","primaryEndpoints":{"dfs":"https://f9c418a6510b611ea9b85ae.dfs.core.windows.net/","web":"https://f9c418a6510b611ea9b85ae.z22.web.core.windows.net/","blob":"https://f9c418a6510b611ea9b85ae.blob.core.windows.net/","queue":"https://f9c418a6510b611ea9b85ae.queue.core.windows.net/","table":"https://f9c418a6510b611ea9b85ae.table.core.windows.net/","file":"https://f9c418a6510b611ea9b85ae.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-talks-rg/providers/Microsoft.Storage/storageAccounts/gwv2overview","name":"gwv2overview","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-18T19:45:27.2337945Z","primaryEndpoints":{"dfs":"https://gwv2overview.dfs.core.windows.net/","web":"https://gwv2overview.z22.web.core.windows.net/","blob":"https://gwv2overview.blob.core.windows.net/","queue":"https://gwv2overview.queue.core.windows.net/","table":"https://gwv2overview.table.core.windows.net/","file":"https://gwv2overview.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestadministrator","name":"iothubtestadministrator","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-04T01:18:18.5399619Z","primaryEndpoints":{"blob":"https://iothubtestadministrator.blob.core.windows.net/","queue":"https://iothubtestadministrator.queue.core.windows.net/","table":"https://iothubtestadministrator.table.core.windows.net/","file":"https://iothubtestadministrator.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestadministrator-secondary.blob.core.windows.net/","queue":"https://iothubtestadministrator-secondary.queue.core.windows.net/","table":"https://iothubtestadministrator-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen10","name":"iothubtestagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T10:05:13.4246717Z","primaryEndpoints":{"blob":"https://iothubtestagen10.blob.core.windows.net/","queue":"https://iothubtestagen10.queue.core.windows.net/","table":"https://iothubtestagen10.table.core.windows.net/","file":"https://iothubtestagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestagen10-secondary.queue.core.windows.net/","table":"https://iothubtestagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen11","name":"iothubtestagen11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T02:23:10.5102160Z","primaryEndpoints":{"blob":"https://iothubtestagen11.blob.core.windows.net/","queue":"https://iothubtestagen11.queue.core.windows.net/","table":"https://iothubtestagen11.table.core.windows.net/","file":"https://iothubtestagen11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen11-secondary.blob.core.windows.net/","queue":"https://iothubtestagen11-secondary.queue.core.windows.net/","table":"https://iothubtestagen11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen12","name":"iothubtestagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T07:09:07.0627024Z","primaryEndpoints":{"blob":"https://iothubtestagen12.blob.core.windows.net/","queue":"https://iothubtestagen12.queue.core.windows.net/","table":"https://iothubtestagen12.table.core.windows.net/","file":"https://iothubtestagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestagen12-secondary.queue.core.windows.net/","table":"https://iothubtestagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen13","name":"iothubtestagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T22:59:14.9381300Z","primaryEndpoints":{"blob":"https://iothubtestagen13.blob.core.windows.net/","queue":"https://iothubtestagen13.queue.core.windows.net/","table":"https://iothubtestagen13.table.core.windows.net/","file":"https://iothubtestagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestagen13-secondary.queue.core.windows.net/","table":"https://iothubtestagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen14","name":"iothubtestagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T03:17:58.2833024Z","primaryEndpoints":{"blob":"https://iothubtestagen14.blob.core.windows.net/","queue":"https://iothubtestagen14.queue.core.windows.net/","table":"https://iothubtestagen14.table.core.windows.net/","file":"https://iothubtestagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestagen14-secondary.queue.core.windows.net/","table":"https://iothubtestagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen15","name":"iothubtestagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-23T23:31:45.2765000Z","primaryEndpoints":{"blob":"https://iothubtestagen15.blob.core.windows.net/","queue":"https://iothubtestagen15.queue.core.windows.net/","table":"https://iothubtestagen15.table.core.windows.net/","file":"https://iothubtestagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestagen15-secondary.queue.core.windows.net/","table":"https://iothubtestagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent3","name":"iothubtestagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T12:35:10.5203999Z","primaryEndpoints":{"blob":"https://iothubtestagent3.blob.core.windows.net/","queue":"https://iothubtestagent3.queue.core.windows.net/","table":"https://iothubtestagent3.table.core.windows.net/","file":"https://iothubtestagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestagent3-secondary.queue.core.windows.net/","table":"https://iothubtestagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent4","name":"iothubtestagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:17:54.1226653Z","primaryEndpoints":{"blob":"https://iothubtestagent4.blob.core.windows.net/","queue":"https://iothubtestagent4.queue.core.windows.net/","table":"https://iothubtestagent4.table.core.windows.net/","file":"https://iothubtestagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestagent4-secondary.queue.core.windows.net/","table":"https://iothubtestagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent5","name":"iothubtestagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T18:49:31.3039985Z","primaryEndpoints":{"blob":"https://iothubtestagent5.blob.core.windows.net/","queue":"https://iothubtestagent5.queue.core.windows.net/","table":"https://iothubtestagent5.table.core.windows.net/","file":"https://iothubtestagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestagent5-secondary.queue.core.windows.net/","table":"https://iothubtestagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent6","name":"iothubtestagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T20:48:18.6972003Z","primaryEndpoints":{"blob":"https://iothubtestagent6.blob.core.windows.net/","queue":"https://iothubtestagent6.queue.core.windows.net/","table":"https://iothubtestagent6.table.core.windows.net/","file":"https://iothubtestagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestagent6-secondary.queue.core.windows.net/","table":"https://iothubtestagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent7","name":"iothubtestagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T18:13:17.5284420Z","primaryEndpoints":{"blob":"https://iothubtestagent7.blob.core.windows.net/","queue":"https://iothubtestagent7.queue.core.windows.net/","table":"https://iothubtestagent7.table.core.windows.net/","file":"https://iothubtestagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestagent7-secondary.queue.core.windows.net/","table":"https://iothubtestagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent8","name":"iothubtestagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T05:50:45.0235433Z","primaryEndpoints":{"blob":"https://iothubtestagent8.blob.core.windows.net/","queue":"https://iothubtestagent8.queue.core.windows.net/","table":"https://iothubtestagent8.table.core.windows.net/","file":"https://iothubtestagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestagent8-secondary.queue.core.windows.net/","table":"https://iothubtestagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent9","name":"iothubtestagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T12:08:19.1985977Z","primaryEndpoints":{"blob":"https://iothubtestagent9.blob.core.windows.net/","queue":"https://iothubtestagent9.queue.core.windows.net/","table":"https://iothubtestagent9.table.core.windows.net/","file":"https://iothubtestagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestagent9-secondary.queue.core.windows.net/","table":"https://iothubtestagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestailn","name":"iothubtestailn","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T21:30:26.5327702Z","primaryEndpoints":{"blob":"https://iothubtestailn.blob.core.windows.net/","queue":"https://iothubtestailn.queue.core.windows.net/","table":"https://iothubtestailn.table.core.windows.net/","file":"https://iothubtestailn.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestailn-secondary.blob.core.windows.net/","queue":"https://iothubtestailn-secondary.queue.core.windows.net/","table":"https://iothubtestailn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestalklin","name":"iothubtestalklin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T21:44:41.0326156Z","primaryEndpoints":{"blob":"https://iothubtestalklin.blob.core.windows.net/","queue":"https://iothubtestalklin.queue.core.windows.net/","table":"https://iothubtestalklin.table.core.windows.net/","file":"https://iothubtestalklin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestalklin-secondary.blob.core.windows.net/","queue":"https://iothubtestalklin-secondary.queue.core.windows.net/","table":"https://iothubtestalklin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestancan","name":"iothubtestancan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-15T20:53:52.5245873Z","primaryEndpoints":{"blob":"https://iothubtestancan.blob.core.windows.net/","queue":"https://iothubtestancan.queue.core.windows.net/","table":"https://iothubtestancan.table.core.windows.net/","file":"https://iothubtestancan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestancan-secondary.blob.core.windows.net/","queue":"https://iothubtestancan-secondary.queue.core.windows.net/","table":"https://iothubtestancan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestankurkul","name":"iothubtestankurkul","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T18:55:33.5852523Z","primaryEndpoints":{"blob":"https://iothubtestankurkul.blob.core.windows.net/","queue":"https://iothubtestankurkul.queue.core.windows.net/","table":"https://iothubtestankurkul.table.core.windows.net/","file":"https://iothubtestankurkul.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestankurkul-secondary.blob.core.windows.net/","queue":"https://iothubtestankurkul-secondary.queue.core.windows.net/","table":"https://iothubtestankurkul-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestanways","name":"iothubtestanways","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T23:37:24.8038321Z","primaryEndpoints":{"blob":"https://iothubtestanways.blob.core.windows.net/","queue":"https://iothubtestanways.queue.core.windows.net/","table":"https://iothubtestanways.table.core.windows.net/","file":"https://iothubtestanways.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestanways-secondary.blob.core.windows.net/","queue":"https://iothubtestanways-secondary.queue.core.windows.net/","table":"https://iothubtestanways-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent0","name":"iothubtestarmagent0","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:25:07.6231752Z","primaryEndpoints":{"blob":"https://iothubtestarmagent0.blob.core.windows.net/","queue":"https://iothubtestarmagent0.queue.core.windows.net/","table":"https://iothubtestarmagent0.table.core.windows.net/","file":"https://iothubtestarmagent0.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent0-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent0-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent0-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent1","name":"iothubtestarmagent1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:06.1819274Z","primaryEndpoints":{"blob":"https://iothubtestarmagent1.blob.core.windows.net/","queue":"https://iothubtestarmagent1.queue.core.windows.net/","table":"https://iothubtestarmagent1.table.core.windows.net/","file":"https://iothubtestarmagent1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent1-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent1-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent10","name":"iothubtestarmagent10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-04T00:00:33.5483450Z","primaryEndpoints":{"blob":"https://iothubtestarmagent10.blob.core.windows.net/","queue":"https://iothubtestarmagent10.queue.core.windows.net/","table":"https://iothubtestarmagent10.table.core.windows.net/","file":"https://iothubtestarmagent10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent10-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent10-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent11","name":"iothubtestarmagent11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:30:52.2440378Z","primaryEndpoints":{"blob":"https://iothubtestarmagent11.blob.core.windows.net/","queue":"https://iothubtestarmagent11.queue.core.windows.net/","table":"https://iothubtestarmagent11.table.core.windows.net/","file":"https://iothubtestarmagent11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent11-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent11-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent12","name":"iothubtestarmagent12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:32.3588053Z","primaryEndpoints":{"blob":"https://iothubtestarmagent12.blob.core.windows.net/","queue":"https://iothubtestarmagent12.queue.core.windows.net/","table":"https://iothubtestarmagent12.table.core.windows.net/","file":"https://iothubtestarmagent12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent12-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent12-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent13","name":"iothubtestarmagent13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:27.6550375Z","primaryEndpoints":{"blob":"https://iothubtestarmagent13.blob.core.windows.net/","queue":"https://iothubtestarmagent13.queue.core.windows.net/","table":"https://iothubtestarmagent13.table.core.windows.net/","file":"https://iothubtestarmagent13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent13-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent13-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent14","name":"iothubtestarmagent14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:42:37.3561862Z","primaryEndpoints":{"blob":"https://iothubtestarmagent14.blob.core.windows.net/","queue":"https://iothubtestarmagent14.queue.core.windows.net/","table":"https://iothubtestarmagent14.table.core.windows.net/","file":"https://iothubtestarmagent14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent14-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent14-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent15","name":"iothubtestarmagent15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:43:42.1672649Z","primaryEndpoints":{"blob":"https://iothubtestarmagent15.blob.core.windows.net/","queue":"https://iothubtestarmagent15.queue.core.windows.net/","table":"https://iothubtestarmagent15.table.core.windows.net/","file":"https://iothubtestarmagent15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent15-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent15-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent16","name":"iothubtestarmagent16","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:41:06.9895448Z","primaryEndpoints":{"blob":"https://iothubtestarmagent16.blob.core.windows.net/","queue":"https://iothubtestarmagent16.queue.core.windows.net/","table":"https://iothubtestarmagent16.table.core.windows.net/","file":"https://iothubtestarmagent16.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent16-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent16-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent2","name":"iothubtestarmagent2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:14.4324743Z","primaryEndpoints":{"blob":"https://iothubtestarmagent2.blob.core.windows.net/","queue":"https://iothubtestarmagent2.queue.core.windows.net/","table":"https://iothubtestarmagent2.table.core.windows.net/","file":"https://iothubtestarmagent2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent2-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent2-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent3","name":"iothubtestarmagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:05:38.8293155Z","primaryEndpoints":{"blob":"https://iothubtestarmagent3.blob.core.windows.net/","queue":"https://iothubtestarmagent3.queue.core.windows.net/","table":"https://iothubtestarmagent3.table.core.windows.net/","file":"https://iothubtestarmagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent3-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent4","name":"iothubtestarmagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T19:43:06.4252573Z","primaryEndpoints":{"blob":"https://iothubtestarmagent4.blob.core.windows.net/","queue":"https://iothubtestarmagent4.queue.core.windows.net/","table":"https://iothubtestarmagent4.table.core.windows.net/","file":"https://iothubtestarmagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent4-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent5","name":"iothubtestarmagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T04:07:15.4659852Z","primaryEndpoints":{"blob":"https://iothubtestarmagent5.blob.core.windows.net/","queue":"https://iothubtestarmagent5.queue.core.windows.net/","table":"https://iothubtestarmagent5.table.core.windows.net/","file":"https://iothubtestarmagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent5-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent6","name":"iothubtestarmagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T23:05:24.2026638Z","primaryEndpoints":{"blob":"https://iothubtestarmagent6.blob.core.windows.net/","queue":"https://iothubtestarmagent6.queue.core.windows.net/","table":"https://iothubtestarmagent6.table.core.windows.net/","file":"https://iothubtestarmagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent6-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent7","name":"iothubtestarmagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T04:19:55.0567985Z","primaryEndpoints":{"blob":"https://iothubtestarmagent7.blob.core.windows.net/","queue":"https://iothubtestarmagent7.queue.core.windows.net/","table":"https://iothubtestarmagent7.table.core.windows.net/","file":"https://iothubtestarmagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent7-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent8","name":"iothubtestarmagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:51:51.1994925Z","primaryEndpoints":{"blob":"https://iothubtestarmagent8.blob.core.windows.net/","queue":"https://iothubtestarmagent8.queue.core.windows.net/","table":"https://iothubtestarmagent8.table.core.windows.net/","file":"https://iothubtestarmagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent8-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent9","name":"iothubtestarmagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:46:30.6691686Z","primaryEndpoints":{"blob":"https://iothubtestarmagent9.blob.core.windows.net/","queue":"https://iothubtestarmagent9.queue.core.windows.net/","table":"https://iothubtestarmagent9.table.core.windows.net/","file":"https://iothubtestarmagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent9-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestartr","name":"iothubtestartr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T18:36:14.8722411Z","primaryEndpoints":{"blob":"https://iothubtestartr.blob.core.windows.net/","queue":"https://iothubtestartr.queue.core.windows.net/","table":"https://iothubtestartr.table.core.windows.net/","file":"https://iothubtestartr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestartr-secondary.blob.core.windows.net/","queue":"https://iothubtestartr-secondary.queue.core.windows.net/","table":"https://iothubtestartr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavich","name":"iothubtestavich","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-04T00:34:14.7642048Z","primaryEndpoints":{"blob":"https://iothubtestavich.blob.core.windows.net/","queue":"https://iothubtestavich.queue.core.windows.net/","table":"https://iothubtestavich.table.core.windows.net/","file":"https://iothubtestavich.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavich-secondary.blob.core.windows.net/","queue":"https://iothubtestavich-secondary.queue.core.windows.net/","table":"https://iothubtestavich-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavran","name":"iothubtestavran","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T07:08:17.6023949Z","primaryEndpoints":{"blob":"https://iothubtestavran.blob.core.windows.net/","queue":"https://iothubtestavran.queue.core.windows.net/","table":"https://iothubtestavran.table.core.windows.net/","file":"https://iothubtestavran.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavran-secondary.blob.core.windows.net/","queue":"https://iothubtestavran-secondary.queue.core.windows.net/","table":"https://iothubtestavran-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestaziotgit","name":"iothubtestaziotgit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-26T08:20:05.9498662Z","primaryEndpoints":{"blob":"https://iothubtestaziotgit.blob.core.windows.net/","queue":"https://iothubtestaziotgit.queue.core.windows.net/","table":"https://iothubtestaziotgit.table.core.windows.net/","file":"https://iothubtestaziotgit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestaziotgit-secondary.blob.core.windows.net/","queue":"https://iothubtestaziotgit-secondary.queue.core.windows.net/","table":"https://iothubtestaziotgit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestchschill","name":"iothubtestchschill","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T19:28:33.3933505Z","primaryEndpoints":{"blob":"https://iothubtestchschill.blob.core.windows.net/","queue":"https://iothubtestchschill.queue.core.windows.net/","table":"https://iothubtestchschill.table.core.windows.net/","file":"https://iothubtestchschill.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestchschill-secondary.blob.core.windows.net/","queue":"https://iothubtestchschill-secondary.queue.core.windows.net/","table":"https://iothubtestchschill-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdemuniap","name":"iothubtestdemuniap","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T18:05:33.8976512Z","primaryEndpoints":{"blob":"https://iothubtestdemuniap.blob.core.windows.net/","queue":"https://iothubtestdemuniap.queue.core.windows.net/","table":"https://iothubtestdemuniap.table.core.windows.net/","file":"https://iothubtestdemuniap.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdemuniap-secondary.blob.core.windows.net/","queue":"https://iothubtestdemuniap-secondary.queue.core.windows.net/","table":"https://iothubtestdemuniap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdmpypin","name":"iothubtestdmpypin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T02:06:07.6557833Z","primaryEndpoints":{"blob":"https://iothubtestdmpypin.blob.core.windows.net/","queue":"https://iothubtestdmpypin.queue.core.windows.net/","table":"https://iothubtestdmpypin.table.core.windows.net/","file":"https://iothubtestdmpypin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdmpypin-secondary.blob.core.windows.net/","queue":"https://iothubtestdmpypin-secondary.queue.core.windows.net/","table":"https://iothubtestdmpypin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesterpogas","name":"iothubtesterpogas","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:42:35.6790670Z","primaryEndpoints":{"blob":"https://iothubtesterpogas.blob.core.windows.net/","queue":"https://iothubtesterpogas.queue.core.windows.net/","table":"https://iothubtesterpogas.table.core.windows.net/","file":"https://iothubtesterpogas.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesterpogas-secondary.blob.core.windows.net/","queue":"https://iothubtesterpogas-secondary.queue.core.windows.net/","table":"https://iothubtesterpogas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestevansim","name":"iothubtestevansim","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T19:23:28.4781666Z","primaryEndpoints":{"blob":"https://iothubtestevansim.blob.core.windows.net/","queue":"https://iothubtestevansim.queue.core.windows.net/","table":"https://iothubtestevansim.table.core.windows.net/","file":"https://iothubtestevansim.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestevansim-secondary.blob.core.windows.net/","queue":"https://iothubtestevansim-secondary.queue.core.windows.net/","table":"https://iothubtestevansim-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestfilipst","name":"iothubtestfilipst","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T18:49:48.9517375Z","primaryEndpoints":{"blob":"https://iothubtestfilipst.blob.core.windows.net/","queue":"https://iothubtestfilipst.queue.core.windows.net/","table":"https://iothubtestfilipst.table.core.windows.net/","file":"https://iothubtestfilipst.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestfilipst-secondary.blob.core.windows.net/","queue":"https://iothubtestfilipst-secondary.queue.core.windows.net/","table":"https://iothubtestfilipst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesthaavula","name":"iothubtesthaavula","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T19:46:15.8018780Z","primaryEndpoints":{"blob":"https://iothubtesthaavula.blob.core.windows.net/","queue":"https://iothubtesthaavula.queue.core.windows.net/","table":"https://iothubtesthaavula.table.core.windows.net/","file":"https://iothubtesthaavula.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesthaavula-secondary.blob.core.windows.net/","queue":"https://iothubtesthaavula-secondary.queue.core.windows.net/","table":"https://iothubtesthaavula-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestiotadmin","name":"iothubtestiotadmin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T06:15:38.7880310Z","primaryEndpoints":{"blob":"https://iothubtestiotadmin.blob.core.windows.net/","queue":"https://iothubtestiotadmin.queue.core.windows.net/","table":"https://iothubtestiotadmin.table.core.windows.net/","file":"https://iothubtestiotadmin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestiotadmin-secondary.blob.core.windows.net/","queue":"https://iothubtestiotadmin-secondary.queue.core.windows.net/","table":"https://iothubtestiotadmin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestisyama","name":"iothubtestisyama","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T20:16:57.8635776Z","primaryEndpoints":{"blob":"https://iothubtestisyama.blob.core.windows.net/","queue":"https://iothubtestisyama.queue.core.windows.net/","table":"https://iothubtestisyama.table.core.windows.net/","file":"https://iothubtestisyama.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestisyama-secondary.blob.core.windows.net/","queue":"https://iothubtestisyama-secondary.queue.core.windows.net/","table":"https://iothubtestisyama-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjacoimba","name":"iothubtestjacoimba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-03T13:35:42.2046780Z","primaryEndpoints":{"blob":"https://iothubtestjacoimba.blob.core.windows.net/","queue":"https://iothubtestjacoimba.queue.core.windows.net/","table":"https://iothubtestjacoimba.table.core.windows.net/","file":"https://iothubtestjacoimba.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjacoimba-secondary.blob.core.windows.net/","queue":"https://iothubtestjacoimba-secondary.queue.core.windows.net/","table":"https://iothubtestjacoimba-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjichang","name":"iothubtestjichang","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T20:48:51.2697659Z","primaryEndpoints":{"blob":"https://iothubtestjichang.blob.core.windows.net/","queue":"https://iothubtestjichang.queue.core.windows.net/","table":"https://iothubtestjichang.table.core.windows.net/","file":"https://iothubtestjichang.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjichang-secondary.blob.core.windows.net/","queue":"https://iothubtestjichang-secondary.queue.core.windows.net/","table":"https://iothubtestjichang-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjitenkos","name":"iothubtestjitenkos","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-21T20:10:24.8341568Z","primaryEndpoints":{"blob":"https://iothubtestjitenkos.blob.core.windows.net/","queue":"https://iothubtestjitenkos.queue.core.windows.net/","table":"https://iothubtestjitenkos.table.core.windows.net/","file":"https://iothubtestjitenkos.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjitenkos-secondary.blob.core.windows.net/","queue":"https://iothubtestjitenkos-secondary.queue.core.windows.net/","table":"https://iothubtestjitenkos-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjucarpio","name":"iothubtestjucarpio","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-20T21:23:53.2553997Z","primaryEndpoints":{"blob":"https://iothubtestjucarpio.blob.core.windows.net/","queue":"https://iothubtestjucarpio.queue.core.windows.net/","table":"https://iothubtestjucarpio.table.core.windows.net/","file":"https://iothubtestjucarpio.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjucarpio-secondary.blob.core.windows.net/","queue":"https://iothubtestjucarpio-secondary.queue.core.windows.net/","table":"https://iothubtestjucarpio-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkaagarw","name":"iothubtestkaagarw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-02T22:17:52.7382855Z","primaryEndpoints":{"blob":"https://iothubtestkaagarw.blob.core.windows.net/","queue":"https://iothubtestkaagarw.queue.core.windows.net/","table":"https://iothubtestkaagarw.table.core.windows.net/","file":"https://iothubtestkaagarw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkaagarw-secondary.blob.core.windows.net/","queue":"https://iothubtestkaagarw-secondary.queue.core.windows.net/","table":"https://iothubtestkaagarw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkanoda","name":"iothubtestkanoda","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T20:18:58.8099190Z","primaryEndpoints":{"blob":"https://iothubtestkanoda.blob.core.windows.net/","queue":"https://iothubtestkanoda.queue.core.windows.net/","table":"https://iothubtestkanoda.table.core.windows.net/","file":"https://iothubtestkanoda.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkanoda-secondary.blob.core.windows.net/","queue":"https://iothubtestkanoda-secondary.queue.core.windows.net/","table":"https://iothubtestkanoda-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlinsqi","name":"iothubtestlinsqi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T06:56:19.5684188Z","primaryEndpoints":{"blob":"https://iothubtestlinsqi.blob.core.windows.net/","queue":"https://iothubtestlinsqi.queue.core.windows.net/","table":"https://iothubtestlinsqi.table.core.windows.net/","file":"https://iothubtestlinsqi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlinsqi-secondary.blob.core.windows.net/","queue":"https://iothubtestlinsqi-secondary.queue.core.windows.net/","table":"https://iothubtestlinsqi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlygasch","name":"iothubtestlygasch","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T22:53:48.2371055Z","primaryEndpoints":{"blob":"https://iothubtestlygasch.blob.core.windows.net/","queue":"https://iothubtestlygasch.queue.core.windows.net/","table":"https://iothubtestlygasch.table.core.windows.net/","file":"https://iothubtestlygasch.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlygasch-secondary.blob.core.windows.net/","queue":"https://iothubtestlygasch-secondary.queue.core.windows.net/","table":"https://iothubtestlygasch-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaazer","name":"iothubtestmaazer","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T20:04:50.5225085Z","primaryEndpoints":{"blob":"https://iothubtestmaazer.blob.core.windows.net/","queue":"https://iothubtestmaazer.queue.core.windows.net/","table":"https://iothubtestmaazer.table.core.windows.net/","file":"https://iothubtestmaazer.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaazer-secondary.blob.core.windows.net/","queue":"https://iothubtestmaazer-secondary.queue.core.windows.net/","table":"https://iothubtestmaazer-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaga","name":"iothubtestmaga","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T22:18:11.6739090Z","primaryEndpoints":{"blob":"https://iothubtestmaga.blob.core.windows.net/","queue":"https://iothubtestmaga.queue.core.windows.net/","table":"https://iothubtestmaga.table.core.windows.net/","file":"https://iothubtestmaga.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaga-secondary.blob.core.windows.net/","queue":"https://iothubtestmaga-secondary.queue.core.windows.net/","table":"https://iothubtestmaga-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmatwal","name":"iothubtestmatwal","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:32:55.9700835Z","primaryEndpoints":{"blob":"https://iothubtestmatwal.blob.core.windows.net/","queue":"https://iothubtestmatwal.queue.core.windows.net/","table":"https://iothubtestmatwal.table.core.windows.net/","file":"https://iothubtestmatwal.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmatwal-secondary.blob.core.windows.net/","queue":"https://iothubtestmatwal-secondary.queue.core.windows.net/","table":"https://iothubtestmatwal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestminune","name":"iothubtestminune","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T00:17:59.9927105Z","primaryEndpoints":{"blob":"https://iothubtestminune.blob.core.windows.net/","queue":"https://iothubtestminune.queue.core.windows.net/","table":"https://iothubtestminune.table.core.windows.net/","file":"https://iothubtestminune.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestminune-secondary.blob.core.windows.net/","queue":"https://iothubtestminune-secondary.queue.core.windows.net/","table":"https://iothubtestminune-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmugunm","name":"iothubtestmugunm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T18:43:40.8831823Z","primaryEndpoints":{"blob":"https://iothubtestmugunm.blob.core.windows.net/","queue":"https://iothubtestmugunm.queue.core.windows.net/","table":"https://iothubtestmugunm.table.core.windows.net/","file":"https://iothubtestmugunm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmugunm-secondary.blob.core.windows.net/","queue":"https://iothubtestmugunm-secondary.queue.core.windows.net/","table":"https://iothubtestmugunm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnadeshpa","name":"iothubtestnadeshpa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-26T23:12:51.2252415Z","primaryEndpoints":{"blob":"https://iothubtestnadeshpa.blob.core.windows.net/","queue":"https://iothubtestnadeshpa.queue.core.windows.net/","table":"https://iothubtestnadeshpa.table.core.windows.net/","file":"https://iothubtestnadeshpa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnadeshpa-secondary.blob.core.windows.net/","queue":"https://iothubtestnadeshpa-secondary.queue.core.windows.net/","table":"https://iothubtestnadeshpa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnebanfic","name":"iothubtestnebanfic","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:56:11.3814714Z","primaryEndpoints":{"blob":"https://iothubtestnebanfic.blob.core.windows.net/","queue":"https://iothubtestnebanfic.queue.core.windows.net/","table":"https://iothubtestnebanfic.table.core.windows.net/","file":"https://iothubtestnebanfic.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnebanfic-secondary.blob.core.windows.net/","queue":"https://iothubtestnebanfic-secondary.queue.core.windows.net/","table":"https://iothubtestnebanfic-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnimengan","name":"iothubtestnimengan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-01T14:31:46.6447731Z","primaryEndpoints":{"blob":"https://iothubtestnimengan.blob.core.windows.net/","queue":"https://iothubtestnimengan.queue.core.windows.net/","table":"https://iothubtestnimengan.table.core.windows.net/","file":"https://iothubtestnimengan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnimengan-secondary.blob.core.windows.net/","queue":"https://iothubtestnimengan-secondary.queue.core.windows.net/","table":"https://iothubtestnimengan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnivithla","name":"iothubtestnivithla","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T02:25:41.1262385Z","primaryEndpoints":{"blob":"https://iothubtestnivithla.blob.core.windows.net/","queue":"https://iothubtestnivithla.queue.core.windows.net/","table":"https://iothubtestnivithla.table.core.windows.net/","file":"https://iothubtestnivithla.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnivithla-secondary.blob.core.windows.net/","queue":"https://iothubtestnivithla-secondary.queue.core.windows.net/","table":"https://iothubtestnivithla-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprashmo","name":"iothubtestprashmo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-10T21:44:41.8251549Z","primaryEndpoints":{"blob":"https://iothubtestprashmo.blob.core.windows.net/","queue":"https://iothubtestprashmo.queue.core.windows.net/","table":"https://iothubtestprashmo.table.core.windows.net/","file":"https://iothubtestprashmo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprashmo-secondary.blob.core.windows.net/","queue":"https://iothubtestprashmo-secondary.queue.core.windows.net/","table":"https://iothubtestprashmo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprepr","name":"iothubtestprepr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-05T17:19:25.3718430Z","primaryEndpoints":{"blob":"https://iothubtestprepr.blob.core.windows.net/","queue":"https://iothubtestprepr.queue.core.windows.net/","table":"https://iothubtestprepr.table.core.windows.net/","file":"https://iothubtestprepr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprepr-secondary.blob.core.windows.net/","queue":"https://iothubtestprepr-secondary.queue.core.windows.net/","table":"https://iothubtestprepr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrajave","name":"iothubtestrajave","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-20T00:31:23.1768369Z","primaryEndpoints":{"blob":"https://iothubtestrajave.blob.core.windows.net/","queue":"https://iothubtestrajave.queue.core.windows.net/","table":"https://iothubtestrajave.table.core.windows.net/","file":"https://iothubtestrajave.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrajave-secondary.blob.core.windows.net/","queue":"https://iothubtestrajave-secondary.queue.core.windows.net/","table":"https://iothubtestrajave-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestraviy","name":"iothubtestraviy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T17:42:52.3734464Z","primaryEndpoints":{"blob":"https://iothubtestraviy.blob.core.windows.net/","queue":"https://iothubtestraviy.queue.core.windows.net/","table":"https://iothubtestraviy.table.core.windows.net/","file":"https://iothubtestraviy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestraviy-secondary.blob.core.windows.net/","queue":"https://iothubtestraviy-secondary.queue.core.windows.net/","table":"https://iothubtestraviy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrechan","name":"iothubtestrechan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:57:31.1606191Z","primaryEndpoints":{"blob":"https://iothubtestrechan.blob.core.windows.net/","queue":"https://iothubtestrechan.queue.core.windows.net/","table":"https://iothubtestrechan.table.core.windows.net/","file":"https://iothubtestrechan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrechan-secondary.blob.core.windows.net/","queue":"https://iothubtestrechan-secondary.queue.core.windows.net/","table":"https://iothubtestrechan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrentu","name":"iothubtestrentu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:40:53.7087040Z","primaryEndpoints":{"blob":"https://iothubtestrentu.blob.core.windows.net/","queue":"https://iothubtestrentu.queue.core.windows.net/","table":"https://iothubtestrentu.table.core.windows.net/","file":"https://iothubtestrentu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrentu-secondary.blob.core.windows.net/","queue":"https://iothubtestrentu-secondary.queue.core.windows.net/","table":"https://iothubtestrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrokhande","name":"iothubtestrokhande","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T02:32:15.1855822Z","primaryEndpoints":{"blob":"https://iothubtestrokhande.blob.core.windows.net/","queue":"https://iothubtestrokhande.queue.core.windows.net/","table":"https://iothubtestrokhande.table.core.windows.net/","file":"https://iothubtestrokhande.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrokhande-secondary.blob.core.windows.net/","queue":"https://iothubtestrokhande-secondary.queue.core.windows.net/","table":"https://iothubtestrokhande-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsachinc","name":"iothubtestsachinc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T20:57:22.1666634Z","primaryEndpoints":{"blob":"https://iothubtestsachinc.blob.core.windows.net/","queue":"https://iothubtestsachinc.queue.core.windows.net/","table":"https://iothubtestsachinc.table.core.windows.net/","file":"https://iothubtestsachinc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsachinc-secondary.blob.core.windows.net/","queue":"https://iothubtestsachinc-secondary.queue.core.windows.net/","table":"https://iothubtestsachinc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsaganeri","name":"iothubtestsaganeri","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T00:08:11.2278020Z","primaryEndpoints":{"blob":"https://iothubtestsaganeri.blob.core.windows.net/","queue":"https://iothubtestsaganeri.queue.core.windows.net/","table":"https://iothubtestsaganeri.table.core.windows.net/","file":"https://iothubtestsaganeri.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsaganeri-secondary.blob.core.windows.net/","queue":"https://iothubtestsaganeri-secondary.queue.core.windows.net/","table":"https://iothubtestsaganeri-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsalall","name":"iothubtestsalall","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-08T21:34:10.1717362Z","primaryEndpoints":{"blob":"https://iothubtestsalall.blob.core.windows.net/","queue":"https://iothubtestsalall.queue.core.windows.net/","table":"https://iothubtestsalall.table.core.windows.net/","file":"https://iothubtestsalall.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsalall-secondary.blob.core.windows.net/","queue":"https://iothubtestsalall-secondary.queue.core.windows.net/","table":"https://iothubtestsalall-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsamguo","name":"iothubtestsamguo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:02:49.8084201Z","primaryEndpoints":{"blob":"https://iothubtestsamguo.blob.core.windows.net/","queue":"https://iothubtestsamguo.queue.core.windows.net/","table":"https://iothubtestsamguo.table.core.windows.net/","file":"https://iothubtestsamguo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsamguo-secondary.blob.core.windows.net/","queue":"https://iothubtestsamguo-secondary.queue.core.windows.net/","table":"https://iothubtestsamguo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsansun","name":"iothubtestsansun","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T22:00:11.9669713Z","primaryEndpoints":{"blob":"https://iothubtestsansun.blob.core.windows.net/","queue":"https://iothubtestsansun.queue.core.windows.net/","table":"https://iothubtestsansun.table.core.windows.net/","file":"https://iothubtestsansun.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsansun-secondary.blob.core.windows.net/","queue":"https://iothubtestsansun-secondary.queue.core.windows.net/","table":"https://iothubtestsansun-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestshishu","name":"iothubtestshishu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T02:08:28.2187591Z","primaryEndpoints":{"blob":"https://iothubtestshishu.blob.core.windows.net/","queue":"https://iothubtestshishu.queue.core.windows.net/","table":"https://iothubtestshishu.table.core.windows.net/","file":"https://iothubtestshishu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestshishu-secondary.blob.core.windows.net/","queue":"https://iothubtestshishu-secondary.queue.core.windows.net/","table":"https://iothubtestshishu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestskintali","name":"iothubtestskintali","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:54:13.6485612Z","primaryEndpoints":{"blob":"https://iothubtestskintali.blob.core.windows.net/","queue":"https://iothubtestskintali.queue.core.windows.net/","table":"https://iothubtestskintali.table.core.windows.net/","file":"https://iothubtestskintali.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestskintali-secondary.blob.core.windows.net/","queue":"https://iothubtestskintali-secondary.queue.core.windows.net/","table":"https://iothubtestskintali-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestspradhan","name":"iothubtestspradhan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T03:14:36.7417452Z","primaryEndpoints":{"blob":"https://iothubtestspradhan.blob.core.windows.net/","queue":"https://iothubtestspradhan.queue.core.windows.net/","table":"https://iothubtestspradhan.table.core.windows.net/","file":"https://iothubtestspradhan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestspradhan-secondary.blob.core.windows.net/","queue":"https://iothubtestspradhan-secondary.queue.core.windows.net/","table":"https://iothubtestspradhan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestswkrovvi","name":"iothubtestswkrovvi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-21T22:29:05.5365174Z","primaryEndpoints":{"blob":"https://iothubtestswkrovvi.blob.core.windows.net/","queue":"https://iothubtestswkrovvi.queue.core.windows.net/","table":"https://iothubtestswkrovvi.table.core.windows.net/","file":"https://iothubtestswkrovvi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestswkrovvi-secondary.blob.core.windows.net/","queue":"https://iothubtestswkrovvi-secondary.queue.core.windows.net/","table":"https://iothubtestswkrovvi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttadesseb","name":"iothubtesttadesseb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-13T17:12:33.4184293Z","primaryEndpoints":{"blob":"https://iothubtesttadesseb.blob.core.windows.net/","queue":"https://iothubtesttadesseb.queue.core.windows.net/","table":"https://iothubtesttadesseb.table.core.windows.net/","file":"https://iothubtesttadesseb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttadesseb-secondary.blob.core.windows.net/","queue":"https://iothubtesttadesseb-secondary.queue.core.windows.net/","table":"https://iothubtesttadesseb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttestarm5","name":"iothubtesttestarm5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T21:30:06.3944118Z","primaryEndpoints":{"blob":"https://iothubtesttestarm5.blob.core.windows.net/","queue":"https://iothubtesttestarm5.queue.core.windows.net/","table":"https://iothubtesttestarm5.table.core.windows.net/","file":"https://iothubtesttestarm5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttestarm5-secondary.blob.core.windows.net/","queue":"https://iothubtesttestarm5-secondary.queue.core.windows.net/","table":"https://iothubtesttestarm5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestvishalg","name":"iothubtestvishalg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-03T23:08:30.0223446Z","primaryEndpoints":{"blob":"https://iothubtestvishalg.blob.core.windows.net/","queue":"https://iothubtestvishalg.queue.core.windows.net/","table":"https://iothubtestvishalg.table.core.windows.net/","file":"https://iothubtestvishalg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestvishalg-secondary.blob.core.windows.net/","queue":"https://iothubtestvishalg-secondary.queue.core.windows.net/","table":"https://iothubtestvishalg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzadixon","name":"iothubtestzadixon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T19:01:04.0109651Z","primaryEndpoints":{"blob":"https://iothubtestzadixon.blob.core.windows.net/","queue":"https://iothubtestzadixon.queue.core.windows.net/","table":"https://iothubtestzadixon.table.core.windows.net/","file":"https://iothubtestzadixon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzadixon-secondary.blob.core.windows.net/","queue":"https://iothubtestzadixon-secondary.queue.core.windows.net/","table":"https://iothubtestzadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen10","name":"iothubtestzagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:25:38.6905986Z","primaryEndpoints":{"blob":"https://iothubtestzagen10.blob.core.windows.net/","queue":"https://iothubtestzagen10.queue.core.windows.net/","table":"https://iothubtestzagen10.table.core.windows.net/","file":"https://iothubtestzagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen10-secondary.queue.core.windows.net/","table":"https://iothubtestzagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen12","name":"iothubtestzagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:57:42.4098682Z","primaryEndpoints":{"blob":"https://iothubtestzagen12.blob.core.windows.net/","queue":"https://iothubtestzagen12.queue.core.windows.net/","table":"https://iothubtestzagen12.table.core.windows.net/","file":"https://iothubtestzagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen12-secondary.queue.core.windows.net/","table":"https://iothubtestzagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen13","name":"iothubtestzagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:55:47.9972019Z","primaryEndpoints":{"blob":"https://iothubtestzagen13.blob.core.windows.net/","queue":"https://iothubtestzagen13.queue.core.windows.net/","table":"https://iothubtestzagen13.table.core.windows.net/","file":"https://iothubtestzagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen13-secondary.queue.core.windows.net/","table":"https://iothubtestzagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen14","name":"iothubtestzagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T09:13:59.2559614Z","primaryEndpoints":{"blob":"https://iothubtestzagen14.blob.core.windows.net/","queue":"https://iothubtestzagen14.queue.core.windows.net/","table":"https://iothubtestzagen14.table.core.windows.net/","file":"https://iothubtestzagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen14-secondary.queue.core.windows.net/","table":"https://iothubtestzagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen15","name":"iothubtestzagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T07:43:56.5112954Z","primaryEndpoints":{"blob":"https://iothubtestzagen15.blob.core.windows.net/","queue":"https://iothubtestzagen15.queue.core.windows.net/","table":"https://iothubtestzagen15.table.core.windows.net/","file":"https://iothubtestzagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen15-secondary.queue.core.windows.net/","table":"https://iothubtestzagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent5","name":"iothubtestzagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T22:41:21.2471564Z","primaryEndpoints":{"blob":"https://iothubtestzagent5.blob.core.windows.net/","queue":"https://iothubtestzagent5.queue.core.windows.net/","table":"https://iothubtestzagent5.table.core.windows.net/","file":"https://iothubtestzagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent5-secondary.queue.core.windows.net/","table":"https://iothubtestzagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent6","name":"iothubtestzagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:23:38.0340787Z","primaryEndpoints":{"blob":"https://iothubtestzagent6.blob.core.windows.net/","queue":"https://iothubtestzagent6.queue.core.windows.net/","table":"https://iothubtestzagent6.table.core.windows.net/","file":"https://iothubtestzagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent6-secondary.queue.core.windows.net/","table":"https://iothubtestzagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent7","name":"iothubtestzagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T19:01:03.0291717Z","primaryEndpoints":{"blob":"https://iothubtestzagent7.blob.core.windows.net/","queue":"https://iothubtestzagent7.queue.core.windows.net/","table":"https://iothubtestzagent7.table.core.windows.net/","file":"https://iothubtestzagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent7-secondary.queue.core.windows.net/","table":"https://iothubtestzagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent8","name":"iothubtestzagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T20:34:35.3897729Z","primaryEndpoints":{"blob":"https://iothubtestzagent8.blob.core.windows.net/","queue":"https://iothubtestzagent8.queue.core.windows.net/","table":"https://iothubtestzagent8.table.core.windows.net/","file":"https://iothubtestzagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent8-secondary.queue.core.windows.net/","table":"https://iothubtestzagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzhangyih","name":"iothubtestzhangyih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T01:43:54.5986244Z","primaryEndpoints":{"blob":"https://iothubtestzhangyih.blob.core.windows.net/","queue":"https://iothubtestzhangyih.queue.core.windows.net/","table":"https://iothubtestzhangyih.table.core.windows.net/","file":"https://iothubtestzhangyih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzhangyih-secondary.blob.core.windows.net/","queue":"https://iothubtestzhangyih-secondary.queue.core.windows.net/","table":"https://iothubtestzhangyih-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzheg","name":"iothubtestzheg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T06:16:21.8173801Z","primaryEndpoints":{"blob":"https://iothubtestzheg.blob.core.windows.net/","queue":"https://iothubtestzheg.queue.core.windows.net/","table":"https://iothubtestzheg.table.core.windows.net/","file":"https://iothubtestzheg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzheg-secondary.blob.core.windows.net/","queue":"https://iothubtestzheg-secondary.queue.core.windows.net/","table":"https://iothubtestzheg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/c_westus/providers/Microsoft.Storage/storageAccounts/simmvp3ovk0c6molt3c7178","name":"simmvp3ovk0c6molt3c7178","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T01:14:27.5133334Z","primaryEndpoints":{"blob":"https://simmvp3ovk0c6molt3c7178.blob.core.windows.net/","queue":"https://simmvp3ovk0c6molt3c7178.queue.core.windows.net/","table":"https://simmvp3ovk0c6molt3c7178.table.core.windows.net/","file":"https://simmvp3ovk0c6molt3c7178.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag215","name":"skintalitestdiag215","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T17:06:36.6308986Z","primaryEndpoints":{"blob":"https://skintalitestdiag215.blob.core.windows.net/","queue":"https://skintalitestdiag215.queue.core.windows.net/","table":"https://skintalitestdiag215.table.core.windows.net/","file":"https://skintalitestdiag215.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag","name":"mgtlabdiag","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T01:59:01.5975155Z","primaryEndpoints":{"blob":"https://mgtlabdiag.blob.core.windows.net/","queue":"https://mgtlabdiag.queue.core.windows.net/","table":"https://mgtlabdiag.table.core.windows.net/","file":"https://mgtlabdiag.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fips-finagle-investigate/providers/Microsoft.Storage/storageAccounts/fips0finagle0investigate","name":"fips0finagle0investigate","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-02-27T00:52:30.3775048Z","primaryEndpoints":{"dfs":"https://fips0finagle0investigate.dfs.core.windows.net/","web":"https://fips0finagle0investigate.z21.web.core.windows.net/","blob":"https://fips0finagle0investigate.blob.core.windows.net/","queue":"https://fips0finagle0investigate.queue.core.windows.net/","table":"https://fips0finagle0investigate.table.core.windows.net/","file":"https://fips0finagle0investigate.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttest2ac","name":"routingrunsttest2ac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-25T01:55:14.5711807Z","primaryEndpoints":{"dfs":"https://routingrunsttest2ac.dfs.core.windows.net/","blob":"https://routingrunsttest2ac.blob.core.windows.net/","table":"https://routingrunsttest2ac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T18:54:05.0784961Z","primaryEndpoints":{"dfs":"https://shishustoragenormal.dfs.core.windows.net/","web":"https://shishustoragenormal.z21.web.core.windows.net/","blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishustoragenormal-secondary.dfs.core.windows.net/","web":"https://shishustoragenormal-secondary.z21.web.core.windows.net/","blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/storageconsttestac","name":"storageconsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T23:36:34.6272473Z","primaryEndpoints":{"dfs":"https://storageconsttestac.dfs.core.windows.net/","blob":"https://storageconsttestac.blob.core.windows.net/","table":"https://storageconsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbuctestsa","name":"andbuctestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T06:23:59.6135355Z","primaryEndpoints":{"dfs":"https://andbuctestsa.dfs.core.windows.net/","web":"https://andbuctestsa.z19.web.core.windows.net/","blob":"https://andbuctestsa.blob.core.windows.net/","queue":"https://andbuctestsa.queue.core.windows.net/","table":"https://andbuctestsa.table.core.windows.net/","file":"https://andbuctestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbuctestsa-secondary.dfs.core.windows.net/","web":"https://andbuctestsa-secondary.z19.web.core.windows.net/","blob":"https://andbuctestsa-secondary.blob.core.windows.net/","queue":"https://andbuctestsa-secondary.queue.core.windows.net/","table":"https://andbuctestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurpoc-rg/providers/Microsoft.Storage/storageAccounts/ankurpoc","name":"ankurpoc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T14:03:58.5309983Z","primaryEndpoints":{"dfs":"https://ankurpoc.dfs.core.windows.net/","web":"https://ankurpoc.z19.web.core.windows.net/","blob":"https://ankurpoc.blob.core.windows.net/","queue":"https://ankurpoc.queue.core.windows.net/","table":"https://ankurpoc.table.core.windows.net/","file":"https://ankurpoc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ankurpoc-secondary.dfs.core.windows.net/","web":"https://ankurpoc-secondary.z19.web.core.windows.net/","blob":"https://ankurpoc-secondary.blob.core.windows.net/","queue":"https://ankurpoc-secondary.queue.core.windows.net/","table":"https://ankurpoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/dtnotificationbugbash","name":"dtnotificationbugbash","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-24T23:06:57.7437857Z","primaryEndpoints":{"dfs":"https://dtnotificationbugbash.dfs.core.windows.net/","web":"https://dtnotificationbugbash.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash.blob.core.windows.net/","queue":"https://dtnotificationbugbash.queue.core.windows.net/","table":"https://dtnotificationbugbash.table.core.windows.net/","file":"https://dtnotificationbugbash.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtnotificationbugbash-secondary.dfs.core.windows.net/","web":"https://dtnotificationbugbash-secondary.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash-secondary.blob.core.windows.net/","queue":"https://dtnotificationbugbash-secondary.queue.core.windows.net/","table":"https://dtnotificationbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/jichangrgdiag","name":"jichangrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-01T23:47:57.7921155Z","primaryEndpoints":{"blob":"https://jichangrgdiag.blob.core.windows.net/","queue":"https://jichangrgdiag.queue.core.windows.net/","table":"https://jichangrgdiag.table.core.windows.net/","file":"https://jichangrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/storageaccountaskhu9745","name":"storageaccountaskhu9745","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-16T01:13:12.1748216Z","primaryEndpoints":{"blob":"https://storageaccountaskhu9745.blob.core.windows.net/","queue":"https://storageaccountaskhu9745.queue.core.windows.net/","table":"https://storageaccountaskhu9745.table.core.windows.net/","file":"https://storageaccountaskhu9745.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag788","name":"magargdiag788","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-23T04:25:34.0062642Z","primaryEndpoints":{"blob":"https://magargdiag788.blob.core.windows.net/","queue":"https://magargdiag788.queue.core.windows.net/","table":"https://magargdiag788.table.core.windows.net/","file":"https://magargdiag788.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag","name":"magargdiag","type":"Microsoft.Storage/storageAccounts","location":"westindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-13T22:06:53.9752332Z","primaryEndpoints":{"blob":"https://magargdiag.blob.core.windows.net/","queue":"https://magargdiag.queue.core.windows.net/","table":"https://magargdiag.table.core.windows.net/","file":"https://magargdiag.file.core.windows.net/"},"primaryLocation":"westindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbucteststorage","name":"andbucteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-20T22:17:30.2844387Z","primaryEndpoints":{"dfs":"https://andbucteststorage.dfs.core.windows.net/","web":"https://andbucteststorage.z5.web.core.windows.net/","blob":"https://andbucteststorage.blob.core.windows.net/","queue":"https://andbucteststorage.queue.core.windows.net/","table":"https://andbucteststorage.table.core.windows.net/","file":"https://andbucteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbucteststorage-secondary.dfs.core.windows.net/","web":"https://andbucteststorage-secondary.z5.web.core.windows.net/","blob":"https://andbucteststorage-secondary.blob.core.windows.net/","queue":"https://andbucteststorage-secondary.queue.core.windows.net/","table":"https://andbucteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-site/providers/Microsoft.Storage/storageAccounts/rajstaticsite","name":"rajstaticsite","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T14:49:40.2589627Z","primaryEndpoints":{"dfs":"https://rajstaticsite.dfs.core.windows.net/","web":"https://rajstaticsite.z5.web.core.windows.net/","blob":"https://rajstaticsite.blob.core.windows.net/","queue":"https://rajstaticsite.queue.core.windows.net/","table":"https://rajstaticsite.table.core.windows.net/","file":"https://rajstaticsite.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag","name":"skintalitestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T00:38:53.3700818Z","primaryEndpoints":{"blob":"https://skintalitestdiag.blob.core.windows.net/","queue":"https://skintalitestdiag.queue.core.windows.net/","table":"https://skintalitestdiag.table.core.windows.net/","file":"https://skintalitestdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mchaiaz/providers/Microsoft.Storage/storageAccounts/mchaizrs","name":"mchaizrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-18T23:29:18.2105166Z","primaryEndpoints":{"dfs":"https://mchaizrs.dfs.core.windows.net/","web":"https://mchaizrs.z3.web.core.windows.net/","blob":"https://mchaizrs.blob.core.windows.net/","queue":"https://mchaizrs.queue.core.windows.net/","table":"https://mchaizrs.table.core.windows.net/","file":"https://mchaizrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '12083' + - '298650' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:49 GMT expires: - '-1' pragma: @@ -42,10 +44,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bb63ba24-3ffd-4299-8947-945201241204 - - 4d3c0980-123b-4b7d-8e71-55ec22a6535b - - b3c16567-7bc9-40b0-a58c-35e1b0eba904 - - 409c89ce-a496-4ac3-8ab7-dd9200099b65 + - df55aa6b-14ff-44e5-a0e5-a8ffdcb87705 + - 1570dd11-6494-42cd-9d2f-e616dbca7ba7 + - 2a07e4c9-e6e5-42d9-ad62-71e491675878 + - f301a16d-74d3-404a-a6a0-39008458327a + - 6074a134-e2b8-4608-a4d8-26923ccca701 + - cc70b9b3-87b5-458f-932c-aaa4a64eb6e9 + - 7db66055-f829-40d4-af46-c31967e9ee5e + - ea029204-081b-4cc7-9ae8-a3ec3e5b5ddc + - 3c1f7b66-8a8e-498c-aa5e-0250cc383f2f + - bad7cac3-8a44-4842-b9ab-4c6c26226415 + - 03f83cd3-ad2e-449b-83d4-8fbccfe26e24 + - 6bb57aa8-8e3a-43d3-948e-0b24448794b6 + - 1b73bf4b-6d73-4b21-b687-aeb2d27bebfa status: code: 200 message: OK @@ -65,8 +76,8 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -82,7 +93,7 @@ interactions: content-type: - application/json date: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:50 GMT expires: - '-1' pragma: @@ -110,9 +121,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.2; Windows 10) AZURECLI/2.5.1 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.3; Windows 10) AZURECLI/2.7.0 x-ms-date: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:50 GMT x-ms-version: - '2018-11-09' method: PUT @@ -124,11 +135,11 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:50 GMT etag: - - '"0x8D7F86A00B411C6"' + - '"0x8D80FE0A02C587C"' last-modified: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -152,8 +163,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-storage/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -169,7 +180,7 @@ interactions: content-type: - application/json date: - - Fri, 15 May 2020 00:50:45 GMT + - Sat, 13 Jun 2020 21:27:51 GMT expires: - '-1' pragma: @@ -185,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -203,15 +214,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T00:50:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-13T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -220,7 +231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:50:47 GMT + - Sat, 13 Jun 2020 21:27:50 GMT expires: - '-1' pragma: @@ -252,8 +263,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -261,7 +272,7 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-05-15T00:50:50.747Z","updatedAt":"2020-05-15T00:50:50.747Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest1","createdAt":"2020-06-13T21:27:53.073Z","updatedAt":"2020-06-13T21:27:53.073Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -270,16 +281,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:50:51 GMT + - Sat, 13 Jun 2020 21:27:57 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - 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: @@ -307,14 +318,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2017-04-01 response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-05-15T00:50:50.747Z","updatedAt":"2020-05-15T00:50:50.747Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest1","createdAt":"2020-06-13T21:27:53.073Z","updatedAt":"2020-06-13T21:27:53.073Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -323,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:21 GMT + - Sat, 13 Jun 2020 21:28:28 GMT expires: - '-1' pragma: @@ -358,23 +369,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1?api-version=2017-04-01 response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-05-15T00:50:50.747Z","updatedAt":"2020-05-15T00:51:33.193Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest1","createdAt":"2020-06-13T21:27:53.073Z","updatedAt":"2020-06-13T21:28:46.96Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '761' + - '760' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:51 GMT + - Sat, 13 Jun 2020 21:28:58 GMT expires: - '-1' pragma: @@ -409,8 +420,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -418,25 +429,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1","name":"ehNamespaceiothubfortest1","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1","createdAt":"2020-05-15T00:50:50.747Z","updatedAt":"2020-05-15T00:51:33.193Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest1","createdAt":"2020-06-13T21:27:53.073Z","updatedAt":"2020-06-13T21:28:46.96Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '761' + - '760' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:52 GMT + - Sat, 13 Jun 2020 21:28:58 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - 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: @@ -466,8 +477,8 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -475,16 +486,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest","name":"eventHubiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-05-15T00:51:55.243Z","updatedAt":"2020-05-15T00:51:55.48Z","partitionIds":["0","1","2","3"]}}' + US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-06-13T21:29:01.527Z","updatedAt":"2020-06-13T21:29:01.907Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '541' + - '542' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:56 GMT + - Sat, 13 Jun 2020 21:29:02 GMT expires: - '-1' pragma: @@ -525,8 +536,8 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name --rights User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -543,16 +554,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:56 GMT + - Sat, 13 Jun 2020 21:29:03 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - 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: @@ -562,7 +573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -582,15 +593,15 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-eventhub/3.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest/ListKeys?api-version=2017-04-01 response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=LKs+YGzA7BphYVbOnzTnVPirtAfeQqwxKYEtZOyvxV8=;EntityPath=eventHubiothubfortest","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=negJOJ7VNEuVp6Gmzb59HmiNz0v7a2ALbjUa56ja/TA=;EntityPath=eventHubiothubfortest","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache @@ -599,16 +610,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:58 GMT + - Sat, 13 Jun 2020 21:29:04 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - 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: @@ -640,8 +651,8 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -657,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:58 GMT + - Sat, 13 Jun 2020 21:29:05 GMT expires: - '-1' pragma: @@ -673,7 +684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -691,15 +702,15 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T00:50:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-13T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -708,7 +719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:51:58 GMT + - Sat, 13 Jun 2020 21:29:05 GMT expires: - '-1' pragma: @@ -746,8 +757,8 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -756,8 +767,8 @@ interactions: body: string: '{"code":400016,"httpStatusCode":"BadRequest","message":"Invalid PartitionCount 4 - value must be between 2 and 2. If you contact a support representative - please include this correlation identifier: 08908d43-0f69-4eab-a6cb-884e3581793c, - timestamp: 2020-05-15 00:52:01Z, errorcode: IH400016."}' + please include this correlation identifier: ae2323cb-7193-4855-987b-10b0ff0f7fad, + timestamp: 2020-06-13 21:29:06Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -766,7 +777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:01 GMT + - Sat, 13 Jun 2020 21:29:05 GMT expires: - '-1' pragma: @@ -800,8 +811,8 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -817,7 +828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:03 GMT + - Sat, 13 Jun 2020 21:29:06 GMT expires: - '-1' pragma: @@ -833,7 +844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -851,15 +862,15 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T00:50:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-13T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -868,7 +879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:03 GMT + - Sat, 13 Jun 2020 21:29:06 GMT expires: - '-1' pragma: @@ -906,8 +917,8 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -916,8 +927,8 @@ interactions: body: string: '{"code":400016,"httpStatusCode":"BadRequest","message":"Invalid PartitionCount 4 - value must be between 2 and 2. If you contact a support representative - please include this correlation identifier: 09cd0c84-c7db-4310-b707-5b9056384d13, - timestamp: 2020-05-15 00:52:05Z, errorcode: IH400016."}' + please include this correlation identifier: 178df1e0-88bb-440a-a332-67d53b2361f8, + timestamp: 2020-06-13 21:29:07Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -926,7 +937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:06 GMT + - Sat, 13 Jun 2020 21:29:06 GMT expires: - '-1' pragma: @@ -938,7 +949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 400 message: Bad Request @@ -960,8 +971,8 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -977,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:06 GMT + - Sat, 13 Jun 2020 21:29:07 GMT expires: - '-1' pragma: @@ -1011,15 +1022,15 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T00:50:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-13T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1028,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:06 GMT + - Sat, 13 Jun 2020 21:29:07 GMT expires: - '-1' pragma: @@ -1066,18 +1077,18 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":2}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":2}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWM1OWYzM2EtYTQwOS00OTlmLThmMTgtMmYzODVlYjViOGQ2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzY5NzA3NWYtOGNmOC00OWNiLTgyZTUtZmIxNGI3MzEwNjM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1085,7 +1096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:10 GMT + - Sat, 13 Jun 2020 21:29:22 GMT expires: - '-1' pragma: @@ -1115,10 +1126,57 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzY5NzA3NWYtOGNmOC00OWNiLTgyZTUtZmIxNGI3MzEwNjM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 13 Jun 2020 21:29: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --partition-count + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWM1OWYzM2EtYTQwOS00OTlmLThmMTgtMmYzODVlYjViOGQ2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzY5NzA3NWYtOGNmOC00OWNiLTgyZTUtZmIxNGI3MzEwNjM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1130,7 +1188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:52:42 GMT + - Sat, 13 Jun 2020 21:30:22 GMT expires: - '-1' pragma: @@ -1162,10 +1220,10 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWM1OWYzM2EtYTQwOS00OTlmLThmMTgtMmYzODVlYjViOGQ2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzY5NzA3NWYtOGNmOC00OWNiLTgyZTUtZmIxNGI3MzEwNjM1?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1177,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:11 GMT + - Sat, 13 Jun 2020 21:30:52 GMT expires: - '-1' pragma: @@ -1209,14 +1267,14 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lECA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-3439898-bb5e73f496","endpoint":"sb://ihsuprodmwhres003dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBK41o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-3621443-fdeb522892","endpoint":"sb://ihsuprodmwhres016dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}' headers: cache-control: - no-cache @@ -1225,7 +1283,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:12 GMT + - Sat, 13 Jun 2020 21:30:53 GMT expires: - '-1' pragma: @@ -1257,37 +1315,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lECA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-3439898-bb5e73f496","endpoint":"sb://ihsuprodmwhres003dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBK41o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iot-hub-fo-3621443-fdeb522892","endpoint":"sb://ihsuprodmwhres016dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"F1","tier":"Free","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '23423' + - '141575' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:14 GMT + - Sat, 13 Jun 2020 21:31:04 GMT expires: - '-1' pragma: @@ -1321,8 +1471,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE @@ -1332,7 +1482,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZhNmUwMDAtOWQ5NS00NDBjLWIyOTktODBkOTM5MDU3NWFj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTNlMmQxOWItNTUyNi00Yjg3LWI3MmMtYWYwZTM4YmZiODcy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1340,11 +1490,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:15 GMT + - Sat, 13 Jun 2020 21:31:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZhNmUwMDAtOWQ5NS00NDBjLWIyOTktODBkOTM5MDU3NWFj?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTNlMmQxOWItNTUyNi00Yjg3LWI3MmMtYWYwZTM4YmZiODcy?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -1372,10 +1522,10 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTZhNmUwMDAtOWQ5NS00NDBjLWIyOTktODBkOTM5MDU3NWFj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTNlMmQxOWItNTUyNi00Yjg3LWI3MmMtYWYwZTM4YmZiODcy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1387,7 +1537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:30 GMT + - Sat, 13 Jun 2020 21:31:22 GMT expires: - '-1' pragma: @@ -1425,8 +1575,8 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -1442,7 +1592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:32 GMT + - Sat, 13 Jun 2020 21:31:23 GMT expires: - '-1' pragma: @@ -1458,7 +1608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -1478,15 +1628,15 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T00:50:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-13T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1495,7 +1645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:32 GMT + - Sat, 13 Jun 2020 21:31:23 GMT expires: - '-1' pragma: @@ -1535,18 +1685,18 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzA5MmQ2N2UtMGZlNi00Nzg3LWI2OWEtOTE4OTFiZjE4YmEy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWIxNmJmZDctYzUwMS00OWQ1LWE2MWMtMGY2NjU1NGViMjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -1554,7 +1704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:53:35 GMT + - Sat, 13 Jun 2020 21:31:37 GMT expires: - '-1' pragma: @@ -1586,10 +1736,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzA5MmQ2N2UtMGZlNi00Nzg3LWI2OWEtOTE4OTFiZjE4YmEy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWIxNmJmZDctYzUwMS00OWQ1LWE2MWMtMGY2NjU1NGViMjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1601,7 +1751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:54:06 GMT + - Sat, 13 Jun 2020 21:32:08 GMT expires: - '-1' pragma: @@ -1635,10 +1785,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzA5MmQ2N2UtMGZlNi00Nzg3LWI2OWEtOTE4OTFiZjE4YmEy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWIxNmJmZDctYzUwMS00OWQ1LWE2MWMtMGY2NjU1NGViMjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1650,7 +1800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:54:36 GMT + - Sat, 13 Jun 2020 21:32:37 GMT expires: - '-1' pragma: @@ -1684,10 +1834,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzA5MmQ2N2UtMGZlNi00Nzg3LWI2OWEtOTE4OTFiZjE4YmEy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWIxNmJmZDctYzUwMS00OWQ1LWE2MWMtMGY2NjU1NGViMjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -1699,7 +1849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:06 GMT + - Sat, 13 Jun 2020 21:33:07 GMT expires: - '-1' pragma: @@ -1733,10 +1883,10 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzA5MmQ2N2UtMGZlNi00Nzg3LWI2OWEtOTE4OTFiZjE4YmEy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNWIxNmJmZDctYzUwMS00OWQ1LWE2MWMtMGY2NjU1NGViMjA3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1748,7 +1898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:37 GMT + - Sat, 13 Jun 2020 21:33:38 GMT expires: - '-1' pragma: @@ -1782,14 +1932,14 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1798,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:37 GMT + - Sat, 13 Jun 2020 21:33:38 GMT expires: - '-1' pragma: @@ -1830,38 +1980,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '25069' + - '141580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:38 GMT + - Sat, 13 Jun 2020 21:33:51 GMT expires: - '-1' pragma: @@ -1895,8 +2136,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -1913,7 +2154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:39 GMT + - Sat, 13 Jun 2020 21:33:51 GMT expires: - '-1' pragma: @@ -1947,38 +2188,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '25069' + - '141580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:39 GMT + - Sat, 13 Jun 2020 21:34:02 GMT expires: - '-1' pragma: @@ -2012,8 +2344,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -2030,7 +2362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:39 GMT + - Sat, 13 Jun 2020 21:34:02 GMT expires: - '-1' pragma: @@ -2064,38 +2396,129 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '25069' + - '141580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:39 GMT + - Sat, 13 Jun 2020 21:34:13 GMT expires: - '-1' pragma: @@ -2129,8 +2552,8 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -2147,7 +2570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:40 GMT + - Sat, 13 Jun 2020 21:34:14 GMT expires: - '-1' pragma: @@ -2163,7 +2586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2181,38 +2604,129 @@ interactions: ParameterSetName: - -n -g --all User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '25069' + - '141580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:41 GMT + - Sat, 13 Jun 2020 21:34:25 GMT expires: - '-1' pragma: @@ -2244,38 +2758,129 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache content-length: - - '25069' + - '141580' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:42 GMT + - Sat, 13 Jun 2020 21:34:36 GMT expires: - '-1' pragma: @@ -2307,57 +2912,148 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lEk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '25069' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:55: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-content-type-options: - - nosniff - status: - code: 200 + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + headers: + cache-control: + - no-cache + content-length: + - '141580' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 13 Jun 2020 21:34: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-content-type-options: + - nosniff + status: + code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lEsw=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBLKu4=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -2384,27 +3080,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lEsw=''}' + - '{''IF-MATCH'': ''AAAAABBLKu4=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lEsw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:55:09 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:09 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:55:09 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:09 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:55:09 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:09 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:55:09 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:09 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLKu4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:33:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:33:15 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:33:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:33:15 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:33:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:33:15 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:33:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:33:15 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FlY2FmMTYtNjIzMS00Mjk0LWJmZDAtNzAyNTBkODI2YmY1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjlkYTlkNTQtY2ZiZi00MDQzLTk4ZWQtNmY1MWI3MjMzZGVl?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2412,7 +3108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:55:45 GMT + - Sat, 13 Jun 2020 21:34:50 GMT expires: - '-1' pragma: @@ -2424,7 +3120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4997' + - '4999' status: code: 201 message: Created @@ -2442,10 +3138,10 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2FlY2FmMTYtNjIzMS00Mjk0LWJmZDAtNzAyNTBkODI2YmY1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjlkYTlkNTQtY2ZiZi00MDQzLTk4ZWQtNmY1MWI3MjMzZGVl?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2457,7 +3153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:17 GMT + - Sat, 13 Jun 2020 21:35:21 GMT expires: - '-1' pragma: @@ -2489,14 +3185,14 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -2505,7 +3201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:17 GMT + - Sat, 13 Jun 2020 21:35:22 GMT expires: - '-1' pragma: @@ -2537,38 +3233,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:18 GMT + - Sat, 13 Jun 2020 21:35:33 GMT expires: - '-1' pragma: @@ -2600,16 +3387,16 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' headers: cache-control: - no-cache @@ -2618,7 +3405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:19 GMT + - Sat, 13 Jun 2020 21:35:34 GMT expires: - '-1' pragma: @@ -2650,38 +3437,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:19 GMT + - Sat, 13 Jun 2020 21:35:45 GMT expires: - '-1' pragma: @@ -2713,8 +3591,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -2730,7 +3608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:20 GMT + - Sat, 13 Jun 2020 21:35:46 GMT expires: - '-1' pragma: @@ -2762,38 +3640,129 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:21 GMT + - Sat, 13 Jun 2020 21:35:57 GMT expires: - '-1' pragma: @@ -2827,8 +3796,8 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -2845,7 +3814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:22 GMT + - Sat, 13 Jun 2020 21:35:57 GMT expires: - '-1' pragma: @@ -2866,7 +3835,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lFBU=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBLY0w=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -2901,28 +3870,28 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lFBU=''}' + - '{''IF-MATCH'': ''AAAAABBLY0w=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFBU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLY0w=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:55:58 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:58 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:55:58 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:58 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:55:58 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:58 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:55:58 GMT","ModifiedTime":"Fri, 15 May 2020 00:55:58 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:35:01 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:35:01 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:35:01 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:35:01 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:35:01 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:35:01 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:35:01 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:35:01 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDNlMjZkYWMtNTBlOC00NDAzLWFhMmQtYjk3ZDczZThmMjY2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzcxNDkyNGEtZDE5My00ZTQ2LWI0OWItYjRhMDZhNGEwNmE5?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2930,7 +3899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:24 GMT + - Sat, 13 Jun 2020 21:35:59 GMT expires: - '-1' pragma: @@ -2942,7 +3911,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -2960,10 +3929,10 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDNlMjZkYWMtNTBlOC00NDAzLWFhMmQtYjk3ZDczZThmMjY2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzcxNDkyNGEtZDE5My00ZTQ2LWI0OWItYjRhMDZhNGEwNmE5?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2975,7 +3944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:54 GMT + - Sat, 13 Jun 2020 21:36:30 GMT expires: - '-1' pragma: @@ -3007,14 +3976,14 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFR4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLds0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -3023,7 +3992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:55 GMT + - Sat, 13 Jun 2020 21:36:31 GMT expires: - '-1' pragma: @@ -3055,38 +4024,129 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFR4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLds0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:57 GMT + - Sat, 13 Jun 2020 21:36:43 GMT expires: - '-1' pragma: @@ -3120,8 +4180,8 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3139,7 +4199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:57 GMT + - Sat, 13 Jun 2020 21:36:43 GMT expires: - '-1' pragma: @@ -3155,7 +4215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3173,38 +4233,129 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFR4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLds0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:58 GMT + - Sat, 13 Jun 2020 21:36:54 GMT expires: - '-1' pragma: @@ -3238,8 +4389,8 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3256,7 +4407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:59 GMT + - Sat, 13 Jun 2020 21:36:54 GMT expires: - '-1' pragma: @@ -3272,7 +4423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -3290,38 +4441,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFR4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFJ4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLds0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25459' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:56:59 GMT + - Sat, 13 Jun 2020 21:37:06 GMT expires: - '-1' pragma: @@ -3355,8 +4597,8 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3374,7 +4616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:00 GMT + - Sat, 13 Jun 2020 21:37:06 GMT expires: - '-1' pragma: @@ -3395,7 +4637,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lFR4=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBLds0=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -3431,29 +4673,29 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lFR4=''}' + - '{''IF-MATCH'': ''AAAAABBLds0=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFR4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLds0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:56:35 GMT","ModifiedTime":"Fri, 15 May 2020 00:56:35 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:56:35 GMT","ModifiedTime":"Fri, 15 May 2020 00:56:35 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:56:35 GMT","ModifiedTime":"Fri, 15 May 2020 00:56:35 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:56:35 GMT","ModifiedTime":"Fri, 15 May 2020 00:56:35 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:56:35 GMT","ModifiedTime":"Fri, 15 May 2020 00:56:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:36:11 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:36:11 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:36:11 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:36:11 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:36:11 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:36:11 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:36:11 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:36:11 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:36:11 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:36:11 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ4YWM1ZmYtZWY2Mi00YWVmLTljNGEtZjQ0M2ZjNzBkODVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNiNjlkMDctNzdkMS00MmQ5LTk1MjAtMDA5NGM3MzVkZjky?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3461,7 +4703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:03 GMT + - Sat, 13 Jun 2020 21:37:08 GMT expires: - '-1' pragma: @@ -3491,10 +4733,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWQ4YWM1ZmYtZWY2Mi00YWVmLTljNGEtZjQ0M2ZjNzBkODVi?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNiNjlkMDctNzdkMS00MmQ5LTk1MjAtMDA5NGM3MzVkZjky?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3506,7 +4748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:33 GMT + - Sat, 13 Jun 2020 21:37:38 GMT expires: - '-1' pragma: @@ -3538,14 +4780,14 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -3554,7 +4796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:33 GMT + - Sat, 13 Jun 2020 21:37:39 GMT expires: - '-1' pragma: @@ -3586,38 +4828,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25635' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:34 GMT + - Sat, 13 Jun 2020 21:37:50 GMT expires: - '-1' pragma: @@ -3651,8 +4984,8 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3669,7 +5002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:35 GMT + - Sat, 13 Jun 2020 21:37:50 GMT expires: - '-1' pragma: @@ -3703,38 +5036,129 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFso=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25635' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:35 GMT + - Sat, 13 Jun 2020 21:38:02 GMT expires: - '-1' pragma: @@ -3768,8 +5192,8 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3786,7 +5210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:36 GMT + - Sat, 13 Jun 2020 21:38:02 GMT expires: - '-1' pragma: @@ -3802,7 +5226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3820,38 +5244,129 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFso=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25635' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:36 GMT + - Sat, 13 Jun 2020 21:38:13 GMT expires: - '-1' pragma: @@ -3883,38 +5398,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lFso=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25635' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:38 GMT + - Sat, 13 Jun 2020 21:38:24 GMT expires: - '-1' pragma: @@ -3948,8 +5554,8 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -3967,7 +5573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:38 GMT + - Sat, 13 Jun 2020 21:38:24 GMT expires: - '-1' pragma: @@ -3988,7 +5594,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lFkU=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBLnH0=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4024,29 +5630,29 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lFkU=''}' + - '{''IF-MATCH'': ''AAAAABBLnH0=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFkU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLnH0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:57:15 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:15 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:57:15 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:15 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:15 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:15 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:15 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:15 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:15 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:15 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:37:20 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:37:20 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:37:20 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:37:20 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:37:20 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:37:20 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:37:20 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:37:20 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:37:20 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:37:20 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmUwMDk0NGEtNGFjZS00YWM1LWJmMjctOTc4MTllNWMwOGYw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjkwYWRjY2ItMmE4NC00MDg4LTk1NjQtYTRmMjZlMTQwZDZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -4054,7 +5660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:57:41 GMT + - Sat, 13 Jun 2020 21:38:26 GMT expires: - '-1' pragma: @@ -4084,10 +5690,10 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmUwMDk0NGEtNGFjZS00YWM1LWJmMjctOTc4MTllNWMwOGYw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjkwYWRjY2ItMmE4NC00MDg4LTk1NjQtYTRmMjZlMTQwZDZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4099,7 +5705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:11 GMT + - Sat, 13 Jun 2020 21:38:57 GMT expires: - '-1' pragma: @@ -4131,14 +5737,14 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFvk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLzD8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -4147,7 +5753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:11 GMT + - Sat, 13 Jun 2020 21:38:57 GMT expires: - '-1' pragma: @@ -4179,38 +5785,129 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFvk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lF1M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLzD8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25949' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:12 GMT + - Sat, 13 Jun 2020 21:39:10 GMT expires: - '-1' pragma: @@ -4244,8 +5941,8 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -4262,7 +5959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:13 GMT + - Sat, 13 Jun 2020 21:39:10 GMT expires: - '-1' pragma: @@ -4296,38 +5993,129 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFvk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lF1M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLzD8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '25949' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:14 GMT + - Sat, 13 Jun 2020 21:39:21 GMT expires: - '-1' pragma: @@ -4361,8 +6149,8 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -4380,7 +6168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:14 GMT + - Sat, 13 Jun 2020 21:39:21 GMT expires: - '-1' pragma: @@ -4396,7 +6184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4416,8 +6204,8 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -4435,7 +6223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:15 GMT + - Sat, 13 Jun 2020 21:39:21 GMT expires: - '-1' pragma: @@ -4451,12 +6239,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lFvk=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABBLzD8=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4490,28 +6278,28 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lFvk=''}' + - '{''IF-MATCH'': ''AAAAABBLzD8=''}' ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lFvk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:57:51 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:51 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:57:51 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:51 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:51 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:51 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:51 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:51 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:57:51 GMT","ModifiedTime":"Fri, 15 May 2020 00:57:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBLzD8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:38:38 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:38:38 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:38:38 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:38:38 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:38:38 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:38:38 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:38:38 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:38:38 GMT"},{"KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:38:38 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:38:38 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOThmN2RjYTMtZGY2Zi00N2U2LWJjNTUtYTJkZWMwODM4OWUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3NDhkMTMtNDA1MS00MzE4LWJjNjYtMzJhNWFjOWEyYTc3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -4519,7 +6307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:17 GMT + - Sat, 13 Jun 2020 21:39:24 GMT expires: - '-1' pragma: @@ -4531,7 +6319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -4549,478 +6337,22 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOThmN2RjYTMtZGY2Zi00N2U2LWJjNTUtYTJkZWMwODM4OWUz?api-version=2020-03-01&operationSource=os_ih&asyncinfo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub policy delete - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' - headers: - cache-control: - - no-cache - content-length: - - '1865' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub policy list - Connection: - - keep-alive - ParameterSetName: - - --hub-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lF1M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '25949' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub policy list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --hub-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 - response: - body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}]}' - headers: - cache-control: - - no-cache - content-length: - - '905' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group create - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGIc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '26781' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 - response: - body: - string: '{"properties":{"created":"Fri, 15 May 2020 00:58:53 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' - headers: - cache-control: - - no-cache - content-length: - - '401' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group show - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGJE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '26781' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group show - Connection: - - keep-alive - ParameterSetName: - - --hub-name -n - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 - response: - body: - string: '{"properties":{"created":"Fri, 15 May 2020 00:58:53 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' - headers: - cache-control: - - no-cache - content-length: - - '401' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 00:58: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub consumer-group list - Connection: - - keep-alive - ParameterSetName: - - --hub-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzQ3NDhkMTMtNDA1MS00MzE4LWJjNjYtMzJhNWFjOWEyYTc3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGJE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '26781' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:55 GMT + - Sat, 13 Jun 2020 21:39:54 GMT expires: - '-1' pragma: @@ -5046,31 +6378,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group list + - iot hub policy delete Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"created":"Fri, 15 May 2020 00:55:00 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Fri, - 15 May 2020 00:58:53 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache content-length: - - '827' + - '1865' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:56 GMT + - Sat, 13 Jun 2020 21:39:55 GMT expires: - '-1' pragma: @@ -5096,44 +6426,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group delete + - iot hub policy list Connection: - keep-alive ParameterSetName: - - --hub-name -n + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:56 GMT + - Sat, 13 Jun 2020 21:40:07 GMT expires: - '-1' pragma: @@ -5159,30 +6580,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group delete + - iot hub policy list Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - --hub-name -n + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/listkeys?api-version=2020-03-01 response: body: - string: '' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache content-length: - - '0' + - '905' + content-type: + - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:57 GMT + - Sat, 13 Jun 2020 21:40:08 GMT expires: - '-1' pragma: @@ -5191,10 +6615,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -5206,44 +6634,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group list + - iot hub consumer-group create Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:58 GMT + - Sat, 13 Jun 2020 21:40:19 GMT expires: - '-1' pragma: @@ -5269,30 +6788,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub consumer-group list + - iot hub consumer-group create Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[{"properties":{"created":"Fri, 15 May 2020 00:55:00 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"properties":{"created":"Sat, 13 Jun 2020 21:40:21 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '425' + - '401' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:58:59 GMT + - Sat, 13 Jun 2020 21:40:21 GMT expires: - '-1' pragma: @@ -5307,6 +6828,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -5318,44 +6841,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job list + - iot hub consumer-group show Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:00 GMT + - Sat, 13 Jun 2020 21:40:32 GMT expires: - '-1' pragma: @@ -5381,30 +6995,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job list + - iot hub consumer-group show Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/jobs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[]}' + string: '{"properties":{"created":"Sat, 13 Jun 2020 21:40:21 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache content-length: - - '12' + - '401' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:01 GMT + - Sat, 13 Jun 2020 21:40:33 GMT expires: - '-1' pragma: @@ -5430,44 +7044,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job show + - iot hub consumer-group list Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:01 GMT + - Sat, 13 Jun 2020 21:40:43 GMT expires: - '-1' pragma: @@ -5493,33 +7198,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job show + - iot hub consumer-group list Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/jobs/fake-job?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"code":404011,"httpStatusCode":"NotFound","message":"Job not found - with ID ''fake-job''. If you contact a support representative please include - this correlation identifier: 6b9090d0-7e23-45ea-b308-ba6d55b6a92f, timestamp: - 2020-05-15 00:59:03Z, errorcode: IH404011."}' + string: '{"value":[{"properties":{"created":"Sat, 13 Jun 2020 21:33:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Sat, + 13 Jun 2020 21:40:21 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache content-length: - - '265' + - '827' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:02 GMT + - Sat, 13 Jun 2020 21:40:44 GMT expires: - '-1' pragma: @@ -5528,11 +7231,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -5541,44 +7248,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group delete Connection: - keep-alive ParameterSetName: - - --hub-name --job-id + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:03 GMT + - Sat, 13 Jun 2020 21:40:57 GMT expires: - '-1' pragma: @@ -5604,44 +7402,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --hub-name --job-id + - --hub-name -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '26781' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 15 May 2020 00:59:03 GMT + - Sat, 13 Jun 2020 21:40:57 GMT expires: - '-1' pragma: @@ -5650,12 +7434,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK @@ -5667,33 +7449,135 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub job cancel + - iot hub consumer-group list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --hub-name --job-id + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '203' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:03 GMT + - Sat, 13 Jun 2020 21:41:08 GMT expires: - '-1' pragma: @@ -5708,8 +7592,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -5720,39 +7602,48 @@ interactions: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - iot hub consumer-group list Connection: - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 + ParameterSetName: + - --hub-name User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 iothubdeviceclient/2016-11-14 - Azure-SDK-For-Python + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US - method: DELETE - uri: https://iot-hub-for-test-11.azure-devices.net/jobs/fake-job?api-version=2016-11-14 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 response: body: - string: '{"Message":"ErrorCode:JobNotFound;NotFound","ExceptionMessage":"Tracking - ID:039f0a1022aa41bfac9b4d18eac9202b-G:18-TimeStamp:05/15/2020 00:59:04"}' + string: '{"value":[{"properties":{"created":"Sat, 13 Jun 2020 21:33:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: + cache-control: + - no-cache content-length: - - '145' + - '425' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:03 GMT - iothub-errorcode: - - JobNotFound + - Sat, 13 Jun 2020 21:41:09 GMT + expires: + - '-1' + pragma: + - no-cache server: - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Origin + - Accept-Encoding + x-content-type-options: + - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -5767,38 +7658,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:05 GMT + - Sat, 13 Jun 2020 21:41:20 GMT expires: - '-1' pragma: @@ -5830,8 +7812,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -5847,7 +7829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:06 GMT + - Sat, 13 Jun 2020 21:41:20 GMT expires: - '-1' pragma: @@ -5879,38 +7861,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli","name":"identity-test-hub-cli","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk","etag":"AAAAAA2lGKY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identity-test-hub-cli.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub-cli","endpoint":"sb://iothub-ns-identity-t-3439908-0dda58b1a3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"521aa7ff-bf36-47c3-aa66-c7151fb0e384","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest6jwecvrakccowvse4;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv36df67ldot5aznnjancizkzpbhz37sihbibtiqh42gwcwdyt4cecq7dru4gw3gmk/providers/Microsoft.Devices/IotHubs/identity-test-hub-cli/PrivateEndpointConnections/identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","name":"identity-test-hub-cli.02981d14-3a96-4040-a025-e3dc907dbeee","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2d4fe89c-72c9-4447-9a19-439de479e5a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '26781' + - '141776' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:06 GMT + - Sat, 13 Jun 2020 21:41:31 GMT expires: - '-1' pragma: @@ -5942,8 +8015,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -5959,7 +8032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:08 GMT + - Sat, 13 Jun 2020 21:41:32 GMT expires: - '-1' pragma: @@ -5991,8 +8064,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -6006,7 +8079,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:59:08 GMT + - Sat, 13 Jun 2020 21:41:32 GMT expires: - '-1' pragma: @@ -6036,8 +8109,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -6054,7 +8127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:09 GMT + - Sat, 13 Jun 2020 21:41:32 GMT expires: - '-1' pragma: @@ -6070,7 +8143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6088,16 +8161,16 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6106,7 +8179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:09 GMT + - Sat, 13 Jun 2020 21:41:33 GMT expires: - '-1' pragma: @@ -6125,11 +8198,11 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lGA0=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBL6VQ=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": @@ -6154,27 +8227,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lGA0=''}' + - '{''IF-MATCH'': ''AAAAABBL6VQ=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGA0=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:58:30 GMT","ModifiedTime":"Fri, 15 May 2020 00:58:30 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:58:30 GMT","ModifiedTime":"Fri, 15 May 2020 00:58:30 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:58:30 GMT","ModifiedTime":"Fri, 15 May 2020 00:58:30 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:58:30 GMT","ModifiedTime":"Fri, 15 May 2020 00:58:30 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBL6VQ=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:39:35 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:39:35 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:39:35 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:39:35 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:39:35 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:39:35 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:39:35 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:39:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDU2OTQwNzItZGE0Yy00N2YxLWE2MjItOTg0MDI3ZjA0MzVh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjhkMzQzZjQtNTgwYi00NzU3LTk5MTYtNzExZDY5Nzc3MmRk?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -6182,7 +8255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:11 GMT + - Sat, 13 Jun 2020 21:41:35 GMT expires: - '-1' pragma: @@ -6212,10 +8285,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDU2OTQwNzItZGE0Yy00N2YxLWE2MjItOTg0MDI3ZjA0MzVh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjhkMzQzZjQtNTgwYi00NzU3LTk5MTYtNzExZDY5Nzc3MmRk?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6227,7 +8300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:42 GMT + - Sat, 13 Jun 2020 21:42:07 GMT expires: - '-1' pragma: @@ -6259,14 +8332,14 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6275,7 +8348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:42 GMT + - Sat, 13 Jun 2020 21:42:07 GMT expires: - '-1' pragma: @@ -6307,8 +8380,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -6322,7 +8395,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:59:43 GMT + - Sat, 13 Jun 2020 21:42:08 GMT expires: - '-1' pragma: @@ -6352,8 +8425,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -6370,7 +8443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:43 GMT + - Sat, 13 Jun 2020 21:42:09 GMT expires: - '-1' pragma: @@ -6386,7 +8459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -6404,16 +8477,16 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6422,7 +8495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:44 GMT + - Sat, 13 Jun 2020 21:42:09 GMT expires: - '-1' pragma: @@ -6454,8 +8527,8 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -6469,7 +8542,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:59:44 GMT + - Sat, 13 Jun 2020 21:42:09 GMT expires: - '-1' pragma: @@ -6499,8 +8572,8 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -6517,7 +8590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:45 GMT + - Sat, 13 Jun 2020 21:42:10 GMT expires: - '-1' pragma: @@ -6533,7 +8606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6551,16 +8624,16 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6569,7 +8642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:46 GMT + - Sat, 13 Jun 2020 21:42:11 GMT expires: - '-1' pragma: @@ -6601,8 +8674,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -6616,7 +8689,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:59:46 GMT + - Sat, 13 Jun 2020 21:42:11 GMT expires: - '-1' pragma: @@ -6646,8 +8719,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -6664,7 +8737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:47 GMT + - Sat, 13 Jun 2020 21:42:12 GMT expires: - '-1' pragma: @@ -6680,7 +8753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6698,16 +8771,16 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6716,7 +8789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:47 GMT + - Sat, 13 Jun 2020 21:42:12 GMT expires: - '-1' pragma: @@ -6748,8 +8821,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -6763,7 +8836,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 00:59:48 GMT + - Sat, 13 Jun 2020 21:42:12 GMT expires: - '-1' pragma: @@ -6793,8 +8866,8 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -6811,7 +8884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:47 GMT + - Sat, 13 Jun 2020 21:42:13 GMT expires: - '-1' pragma: @@ -6827,7 +8900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6845,16 +8918,16 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -6863,7 +8936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:48 GMT + - Sat, 13 Jun 2020 21:42:14 GMT expires: - '-1' pragma: @@ -6882,15 +8955,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lGVs=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMEjk=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "ee3901af-d107-4720-8ecd-ee6a3b6204a4", + "serviceBusTopics": [], "eventHubs": [{"id": "7345099a-5ae4-48d1-8df8-ecbb8f3007d9", "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -6917,27 +8990,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lGVs=''}' + - '{''IF-MATCH'': ''AAAAABBMEjk=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGVs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 00:59:20 GMT","ModifiedTime":"Fri, 15 May 2020 00:59:20 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 00:59:20 GMT","ModifiedTime":"Fri, 15 May 2020 00:59:20 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:59:20 GMT","ModifiedTime":"Fri, 15 May 2020 00:59:20 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 00:59:20 GMT","ModifiedTime":"Fri, 15 May 2020 00:59:20 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMEjk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:41:45 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:41:45 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:41:45 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:41:45 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:41:45 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:41:45 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:41:45 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:41:45 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTk0ZTIyODUtZTRkYy00ZWMwLThlNGQtODVjNTA1NjE4ZTRh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjc2NjFmMzctYzkyMi00YzZkLWFkZGYtZTk3N2ExZWM3ZmFh?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -6945,7 +9018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 00:59:50 GMT + - Sat, 13 Jun 2020 21:42:16 GMT expires: - '-1' pragma: @@ -6975,10 +9048,10 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTk0ZTIyODUtZTRkYy00ZWMwLThlNGQtODVjNTA1NjE4ZTRh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjc2NjFmMzctYzkyMi00YzZkLWFkZGYtZTk3N2ExZWM3ZmFh?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6990,7 +9063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:21 GMT + - Sat, 13 Jun 2020 21:42:46 GMT expires: - '-1' pragma: @@ -7022,14 +9095,14 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGgM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMQcs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7038,7 +9111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:22 GMT + - Sat, 13 Jun 2020 21:42:48 GMT expires: - '-1' pragma: @@ -7070,8 +9143,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -7085,7 +9158,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:00:22 GMT + - Sat, 13 Jun 2020 21:42:48 GMT expires: - '-1' pragma: @@ -7115,8 +9188,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -7133,7 +9206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:23 GMT + - Sat, 13 Jun 2020 21:42:48 GMT expires: - '-1' pragma: @@ -7149,7 +9222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -7167,16 +9240,16 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGgM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMQcs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7185,7 +9258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:23 GMT + - Sat, 13 Jun 2020 21:42:49 GMT expires: - '-1' pragma: @@ -7204,15 +9277,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lGgM=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMQcs=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "ee3901af-d107-4720-8ecd-ee6a3b6204a4", + "serviceBusTopics": [], "eventHubs": [{"id": "7345099a-5ae4-48d1-8df8-ecbb8f3007d9", "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": @@ -7241,27 +9314,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lGgM=''}' + - '{''IF-MATCH'': ''AAAAABBMQcs=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lGgM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:00:01 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:01 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:00:01 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:01 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:00:01 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:01 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:00:01 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:01 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMQcs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:42:26 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:42:26 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:42:26 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:42:26 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:42:26 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:42:26 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:42:26 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:42:26 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU3NzJlMTMtYTE3NS00MDVmLTliYWItYWY4YzE3NTRkNDg5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODRkZWI4ZTctNzFiYy00YmM4LWFhNTMtOTExOGUwNWU5YzNh?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -7269,7 +9342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:26 GMT + - Sat, 13 Jun 2020 21:42:52 GMT expires: - '-1' pragma: @@ -7281,7 +9354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -7299,10 +9372,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU3NzJlMTMtYTE3NS00MDVmLTliYWItYWY4YzE3NTRkNDg5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODRkZWI4ZTctNzFiYy00YmM4LWFhNTMtOTExOGUwNWU5YzNh?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -7314,7 +9387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:00:56 GMT + - Sat, 13 Jun 2020 21:43:22 GMT expires: - '-1' pragma: @@ -7346,10 +9419,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjU3NzJlMTMtYTE3NS00MDVmLTliYWItYWY4YzE3NTRkNDg5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODRkZWI4ZTctNzFiYy00YmM4LWFhNTMtOTExOGUwNWU5YzNh?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7361,7 +9434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:26 GMT + - Sat, 13 Jun 2020 21:43:53 GMT expires: - '-1' pragma: @@ -7393,14 +9466,14 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7409,7 +9482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:26 GMT + - Sat, 13 Jun 2020 21:43:53 GMT expires: - '-1' pragma: @@ -7441,8 +9514,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -7456,7 +9529,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:01:28 GMT + - Sat, 13 Jun 2020 21:43:53 GMT expires: - '-1' pragma: @@ -7486,8 +9559,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -7504,7 +9577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:28 GMT + - Sat, 13 Jun 2020 21:43:54 GMT expires: - '-1' pragma: @@ -7520,7 +9593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -7538,16 +9611,16 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7556,7 +9629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:28 GMT + - Sat, 13 Jun 2020 21:43:55 GMT expires: - '-1' pragma: @@ -7588,8 +9661,8 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -7603,7 +9676,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:01:29 GMT + - Sat, 13 Jun 2020 21:43:55 GMT expires: - '-1' pragma: @@ -7633,8 +9706,8 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -7651,7 +9724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:30 GMT + - Sat, 13 Jun 2020 21:43:55 GMT expires: - '-1' pragma: @@ -7667,7 +9740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7685,16 +9758,16 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7703,7 +9776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:30 GMT + - Sat, 13 Jun 2020 21:43:56 GMT expires: - '-1' pragma: @@ -7735,8 +9808,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -7750,7 +9823,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:01:30 GMT + - Sat, 13 Jun 2020 21:43:56 GMT expires: - '-1' pragma: @@ -7780,8 +9853,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -7798,7 +9871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:30 GMT + - Sat, 13 Jun 2020 21:43:57 GMT expires: - '-1' pragma: @@ -7814,7 +9887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7832,16 +9905,16 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7850,7 +9923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:30 GMT + - Sat, 13 Jun 2020 21:43:57 GMT expires: - '-1' pragma: @@ -7882,8 +9955,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -7897,7 +9970,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:01:31 GMT + - Sat, 13 Jun 2020 21:43:58 GMT expires: - '-1' pragma: @@ -7927,8 +10000,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -7945,7 +10018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:32 GMT + - Sat, 13 Jun 2020 21:43:58 GMT expires: - '-1' pragma: @@ -7979,16 +10052,16 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -7997,7 +10070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:32 GMT + - Sat, 13 Jun 2020 21:43:59 GMT expires: - '-1' pragma: @@ -8034,8 +10107,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -8051,7 +10124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:32 GMT + - Sat, 13 Jun 2020 21:43:59 GMT expires: - '-1' pragma: @@ -8089,8 +10162,8 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -8106,7 +10179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:33 GMT + - Sat, 13 Jun 2020 21:44:00 GMT expires: - '-1' pragma: @@ -8122,7 +10195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -8140,8 +10213,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -8155,7 +10228,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:01:34 GMT + - Sat, 13 Jun 2020 21:44:01 GMT expires: - '-1' pragma: @@ -8185,8 +10258,8 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -8203,7 +10276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:35 GMT + - Sat, 13 Jun 2020 21:44:01 GMT expires: - '-1' pragma: @@ -8219,7 +10292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -8237,16 +10310,16 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -8255,7 +10328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:35 GMT + - Sat, 13 Jun 2020 21:44:02 GMT expires: - '-1' pragma: @@ -8274,15 +10347,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lHcw=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMaBI=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "ee3901af-d107-4720-8ecd-ee6a3b6204a4", + "serviceBusTopics": [], "eventHubs": [{"id": "7345099a-5ae4-48d1-8df8-ecbb8f3007d9", "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": @@ -8311,27 +10384,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lHcw=''}' + - '{''IF-MATCH'': ''AAAAABBMaBI=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHcw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:00:56 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:56 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:00:56 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:56 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:00:56 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:56 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:00:56 GMT","ModifiedTime":"Fri, 15 May 2020 01:00:56 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMaBI=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:43:22 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:43:22 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:43:22 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:43:22 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:43:22 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:43:22 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:43:22 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:43:22 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGFjMzRhZjAtN2EyYi00YjM2LThmZTAtYjQ4Nzk0M2VmZDU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmZiNjk2M2QtYjY4Yy00MGI0LTlmNTEtMzA3ZWEzOWI0NmY3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8339,7 +10412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:01:39 GMT + - Sat, 13 Jun 2020 21:44:04 GMT expires: - '-1' pragma: @@ -8351,7 +10424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -8369,10 +10442,10 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGFjMzRhZjAtN2EyYi00YjM2LThmZTAtYjQ4Nzk0M2VmZDU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNmZiNjk2M2QtYjY4Yy00MGI0LTlmNTEtMzA3ZWEzOWI0NmY3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8384,7 +10457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:09 GMT + - Sat, 13 Jun 2020 21:44:35 GMT expires: - '-1' pragma: @@ -8416,14 +10489,14 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHq8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMe+k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -8432,7 +10505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:09 GMT + - Sat, 13 Jun 2020 21:44:35 GMT expires: - '-1' pragma: @@ -8464,8 +10537,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -8479,7 +10552,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:02:10 GMT + - Sat, 13 Jun 2020 21:44:37 GMT expires: - '-1' pragma: @@ -8509,8 +10582,8 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -8527,7 +10600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:10 GMT + - Sat, 13 Jun 2020 21:44:37 GMT expires: - '-1' pragma: @@ -8543,7 +10616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -8561,16 +10634,16 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHq8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMe+k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -8579,7 +10652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:10 GMT + - Sat, 13 Jun 2020 21:44:38 GMT expires: - '-1' pragma: @@ -8598,15 +10671,15 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lHq8=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMe+k=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "ee3901af-d107-4720-8ecd-ee6a3b6204a4", + "serviceBusTopics": [], "eventHubs": [{"id": "7345099a-5ae4-48d1-8df8-ecbb8f3007d9", "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", - "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -8633,27 +10706,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lHq8=''}' + - '{''IF-MATCH'': ''AAAAABBMe+k=''}' ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lHq8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:01:50 GMT","ModifiedTime":"Fri, 15 May 2020 01:01:50 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:01:50 GMT","ModifiedTime":"Fri, 15 May 2020 01:01:50 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:01:50 GMT","ModifiedTime":"Fri, 15 May 2020 01:01:50 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:01:50 GMT","ModifiedTime":"Fri, 15 May 2020 01:01:50 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=bcv7SeZM4GgoCDjyW0XeEtZm0gbU/Zy8uQRX0b/cplo=;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMe+k=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:15 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:15 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:15 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:15 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:15 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=qWD4pdxkXIVvJzgDs29ZXreRpXuvBQIE1RVkOWMtJPA=;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzlhOWMxOGMtNjE0OS00MTAzLWJjMGQtYjQ0MjU5MTFmNjg5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmY3OWE3ZWYtYmY2ZS00ZmU5LWI3NWItYzM1MmY5YWNiZDMy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8661,7 +10734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:13 GMT + - Sat, 13 Jun 2020 21:44:40 GMT expires: - '-1' pragma: @@ -8673,7 +10746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -8691,10 +10764,10 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzlhOWMxOGMtNjE0OS00MTAzLWJjMGQtYjQ0MjU5MTFmNjg5?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYmY3OWE3ZWYtYmY2ZS00ZmU5LWI3NWItYzM1MmY5YWNiZDMy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8706,7 +10779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:44 GMT + - Sat, 13 Jun 2020 21:45:11 GMT expires: - '-1' pragma: @@ -8738,14 +10811,14 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH1Y=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMhhM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -8754,7 +10827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:44 GMT + - Sat, 13 Jun 2020 21:45:11 GMT expires: - '-1' pragma: @@ -8786,8 +10859,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -8801,7 +10874,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:02:45 GMT + - Sat, 13 Jun 2020 21:45:12 GMT expires: - '-1' pragma: @@ -8831,8 +10904,8 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -8849,7 +10922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:46 GMT + - Sat, 13 Jun 2020 21:45:13 GMT expires: - '-1' pragma: @@ -8865,7 +10938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -8883,16 +10956,16 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH1Y=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"ee3901af-d107-4720-8ecd-ee6a3b6204a4","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMhhM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"7345099a-5ae4-48d1-8df8-ecbb8f3007d9","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -8901,7 +10974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:46 GMT + - Sat, 13 Jun 2020 21:45:13 GMT expires: - '-1' pragma: @@ -8920,12 +10993,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lH1Y=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMhhM=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -8952,27 +11025,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lH1Y=''}' + - '{''IF-MATCH'': ''AAAAABBMhhM=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH1Y=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:02:22 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:22 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:02:22 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:22 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:02:22 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:22 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:02:22 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:22 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMhhM=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:51 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:51 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:51 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:51 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:51 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:51 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:44:51 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:44:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFmN2VkZjctNjcxMS00MDk5LWE0MWYtZjVlYjJhNDgwNDQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM1NDUxZTItM2QxZS00N2VlLTg1ZGEtNGNkMmZjMjExZjcx?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8980,7 +11053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:02:49 GMT + - Sat, 13 Jun 2020 21:45:17 GMT expires: - '-1' pragma: @@ -8992,7 +11065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -9010,10 +11083,10 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNGFmN2VkZjctNjcxMS00MDk5LWE0MWYtZjVlYjJhNDgwNDQ1?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM1NDUxZTItM2QxZS00N2VlLTg1ZGEtNGNkMmZjMjExZjcx?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9025,7 +11098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:19 GMT + - Sat, 13 Jun 2020 21:45:47 GMT expires: - '-1' pragma: @@ -9057,14 +11130,14 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH9g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMmq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9073,7 +11146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:19 GMT + - Sat, 13 Jun 2020 21:45:47 GMT expires: - '-1' pragma: @@ -9105,16 +11178,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2019-07-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH9g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMmq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -9123,7 +11196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:20 GMT + - Sat, 13 Jun 2020 21:45:50 GMT expires: - '-1' pragma: @@ -9155,8 +11228,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -9170,7 +11243,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:03:20 GMT + - Sat, 13 Jun 2020 21:45:50 GMT expires: - '-1' pragma: @@ -9200,8 +11273,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -9218,7 +11291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:21 GMT + - Sat, 13 Jun 2020 21:45:51 GMT expires: - '-1' pragma: @@ -9234,7 +11307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9252,16 +11325,16 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH9g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMmq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9270,7 +11343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:21 GMT + - Sat, 13 Jun 2020 21:45:51 GMT expires: - '-1' pragma: @@ -9289,12 +11362,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lH9g=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMmq8=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -9322,12 +11395,12 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lH9g=''}' + - '{''IF-MATCH'': ''AAAAABBMmq8=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -9337,7 +11410,7 @@ interactions: string: '{"code":400131,"httpStatusCode":"BadRequest","message":"Enrichment has an undefined endpoint, Enrichment Key:key, EndpointName:fake_endpoint. If you contact a support representative please include this correlation identifier: - 7cd360a8-13c7-4359-a731-5b2720c7cc93, timestamp: 2020-05-15 01:03:23Z, errorcode: + 8459f6c5-0d8d-414f-9599-f7f4a6cb1a38, timestamp: 2020-06-13 21:45:53Z, errorcode: IH400131."}' headers: cache-control: @@ -9347,7 +11420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:23 GMT + - Sat, 13 Jun 2020 21:45:53 GMT expires: - '-1' pragma: @@ -9377,8 +11450,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -9392,7 +11465,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:03:23 GMT + - Sat, 13 Jun 2020 21:45:53 GMT expires: - '-1' pragma: @@ -9422,8 +11495,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -9440,7 +11513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:24 GMT + - Sat, 13 Jun 2020 21:45:54 GMT expires: - '-1' pragma: @@ -9456,7 +11529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -9474,16 +11547,16 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH9g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMmq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9492,7 +11565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:24 GMT + - Sat, 13 Jun 2020 21:45:55 GMT expires: - '-1' pragma: @@ -9511,12 +11584,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lH9g=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMmq8=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -9544,27 +11617,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lH9g=''}' + - '{''IF-MATCH'': ''AAAAABBMmq8=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lH9g=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:02:59 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:59 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:02:59 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:59 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:02:59 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:59 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:02:59 GMT","ModifiedTime":"Fri, 15 May 2020 01:02:59 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMmq8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:45:28 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:45:28 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:45:28 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:45:28 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:45:28 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:45:28 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:45:28 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:45:28 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOWMzYmU4ODEtNWQ0Yi00YjQwLTkzYTItNWYxMzc2YTI2ZDQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjNmMGJhYjItM2QzMy00YzFlLWJjMTItM2Q2YjVjYjk3ZmEx?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -9572,7 +11645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:27 GMT + - Sat, 13 Jun 2020 21:45:58 GMT expires: - '-1' pragma: @@ -9602,10 +11675,10 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOWMzYmU4ODEtNWQ0Yi00YjQwLTkzYTItNWYxMzc2YTI2ZDQ3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZjNmMGJhYjItM2QzMy00YzFlLWJjMTItM2Q2YjVjYjk3ZmEx?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9617,7 +11690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:58 GMT + - Sat, 13 Jun 2020 21:46:28 GMT expires: - '-1' pragma: @@ -9649,14 +11722,14 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIGk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMr6k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9665,7 +11738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:58 GMT + - Sat, 13 Jun 2020 21:46:29 GMT expires: - '-1' pragma: @@ -9697,8 +11770,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -9712,7 +11785,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:03:59 GMT + - Sat, 13 Jun 2020 21:46:30 GMT expires: - '-1' pragma: @@ -9742,8 +11815,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -9760,7 +11833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:59 GMT + - Sat, 13 Jun 2020 21:46:30 GMT expires: - '-1' pragma: @@ -9794,16 +11867,16 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIGk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMr6k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9812,7 +11885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:03:59 GMT + - Sat, 13 Jun 2020 21:46:31 GMT expires: - '-1' pragma: @@ -9844,8 +11917,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -9859,7 +11932,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:04:01 GMT + - Sat, 13 Jun 2020 21:46:31 GMT expires: - '-1' pragma: @@ -9889,8 +11962,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -9907,7 +11980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:00 GMT + - Sat, 13 Jun 2020 21:46:32 GMT expires: - '-1' pragma: @@ -9923,7 +11996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -9941,16 +12014,16 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIGk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMr6k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -9959,7 +12032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:01 GMT + - Sat, 13 Jun 2020 21:46:32 GMT expires: - '-1' pragma: @@ -9978,12 +12051,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lIGk=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMr6k=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -10011,12 +12084,12 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lIGk=''}' + - '{''IF-MATCH'': ''AAAAABBMr6k=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -10026,7 +12099,7 @@ interactions: string: '{"code":400131,"httpStatusCode":"BadRequest","message":"Enrichment has an undefined endpoint, Enrichment Key:key, EndpointName:fake_endpoint. If you contact a support representative please include this correlation identifier: - eb37c2d0-2446-4307-813f-14c3036cf647, timestamp: 2020-05-15 01:04:03Z, errorcode: + d0b9ac23-2191-40b4-ae69-a7a231f948f5, timestamp: 2020-06-13 21:46:35Z, errorcode: IH400131."}' headers: cache-control: @@ -10036,7 +12109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:02 GMT + - Sat, 13 Jun 2020 21:46:34 GMT expires: - '-1' pragma: @@ -10048,7 +12121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 400 message: Bad Request @@ -10066,8 +12139,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -10081,7 +12154,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:04:03 GMT + - Sat, 13 Jun 2020 21:46:34 GMT expires: - '-1' pragma: @@ -10111,8 +12184,8 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -10129,7 +12202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:03 GMT + - Sat, 13 Jun 2020 21:46:35 GMT expires: - '-1' pragma: @@ -10145,7 +12218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -10163,16 +12236,16 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIGk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMr6k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10181,7 +12254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:04 GMT + - Sat, 13 Jun 2020 21:46:36 GMT expires: - '-1' pragma: @@ -10200,12 +12273,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lIGk=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMr6k=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -10233,27 +12306,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lIGk=''}' + - '{''IF-MATCH'': ''AAAAABBMr6k=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIGk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:03:38 GMT","ModifiedTime":"Fri, 15 May 2020 01:03:38 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:03:38 GMT","ModifiedTime":"Fri, 15 May 2020 01:03:38 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:03:38 GMT","ModifiedTime":"Fri, 15 May 2020 01:03:38 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:03:38 GMT","ModifiedTime":"Fri, 15 May 2020 01:03:38 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMr6k=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:08 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:08 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:08 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:08 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:08 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:08 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:08 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWNmNjc3OGMtMmU3Mi00M2I5LThjMTQtOThiNjUyZDNhZmI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGRmOTYwMmEtNDY1OC00MWFkLWE1NmEtMGI5NGNjYTBkODUy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10261,7 +12334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:07 GMT + - Sat, 13 Jun 2020 21:46:38 GMT expires: - '-1' pragma: @@ -10273,7 +12346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4997' + - '4999' status: code: 201 message: Created @@ -10291,10 +12364,10 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWNmNjc3OGMtMmU3Mi00M2I5LThjMTQtOThiNjUyZDNhZmI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGRmOTYwMmEtNDY1OC00MWFkLWE1NmEtMGI5NGNjYTBkODUy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10306,7 +12379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:37 GMT + - Sat, 13 Jun 2020 21:47:08 GMT expires: - '-1' pragma: @@ -10338,14 +12411,14 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIQ8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMw0M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10354,7 +12427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:37 GMT + - Sat, 13 Jun 2020 21:47:09 GMT expires: - '-1' pragma: @@ -10386,8 +12459,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -10401,7 +12474,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:04:38 GMT + - Sat, 13 Jun 2020 21:47:11 GMT expires: - '-1' pragma: @@ -10431,8 +12504,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -10449,7 +12522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:39 GMT + - Sat, 13 Jun 2020 21:47:11 GMT expires: - '-1' pragma: @@ -10465,7 +12538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -10483,16 +12556,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIQ8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMw0M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10501,7 +12574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:39 GMT + - Sat, 13 Jun 2020 21:47:12 GMT expires: - '-1' pragma: @@ -10533,8 +12606,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -10548,7 +12621,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:04:40 GMT + - Sat, 13 Jun 2020 21:47:12 GMT expires: - '-1' pragma: @@ -10578,8 +12651,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -10596,7 +12669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:40 GMT + - Sat, 13 Jun 2020 21:47:12 GMT expires: - '-1' pragma: @@ -10630,16 +12703,16 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIQ8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMw0M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10648,7 +12721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:41 GMT + - Sat, 13 Jun 2020 21:47:13 GMT expires: - '-1' pragma: @@ -10680,8 +12753,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -10695,7 +12768,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:04:41 GMT + - Sat, 13 Jun 2020 21:47:14 GMT expires: - '-1' pragma: @@ -10725,8 +12798,8 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -10743,7 +12816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:42 GMT + - Sat, 13 Jun 2020 21:47:14 GMT expires: - '-1' pragma: @@ -10759,7 +12832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -10777,16 +12850,16 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIQ8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMw0M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[{"key":"key","value":"value","endpointNames":["events"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10795,7 +12868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:42 GMT + - Sat, 13 Jun 2020 21:47:14 GMT expires: - '-1' pragma: @@ -10814,12 +12887,12 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAAA2lIQ8=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABBMw0M=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "06ed7708-848a-4876-8692-fe02651ff073", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "dfdf3716-8d1f-4e35-b796-2d4c14d43bbe", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], @@ -10847,27 +12920,27 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAAA2lIQ8=''}' + - '{''IF-MATCH'': ''AAAAABBMw0M=''}' ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIQ8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-a2190042-d21d-4809-b8ad-9703749e9e95-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Fri, - 15 May 2020 01:04:17 GMT","ModifiedTime":"Fri, 15 May 2020 01:04:17 GMT"},{"KeyName":"owner-4127e1fc-d9f2-469c-b282-d08f9101be4d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Fri, - 15 May 2020 01:04:17 GMT","ModifiedTime":"Fri, 15 May 2020 01:04:17 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:04:17 GMT","ModifiedTime":"Fri, 15 May 2020 01:04:17 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Fri, - 15 May 2020 01:04:17 GMT","ModifiedTime":"Fri, 15 May 2020 01:04:17 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBMw0M=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-40b1d21c-16ff-4a8f-8b87-09537fa72e14-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:48 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:48 GMT"},{"KeyName":"owner-bf6555ad-fc70-41e4-9276-c1ccee711ad1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:48 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:48 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:48 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:48 GMT"},{"KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sat, + 13 Jun 2020 21:46:48 GMT","ModifiedTime":"Sat, 13 Jun 2020 21:46:48 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDliMDI1MjEtMWNjOS00OTFhLWEyNzItNDE2MjI0ZjkzMTMz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NkOWIwOTYtZTU5OC00YTNlLWFmYjUtZWJmNWNkZGI4ZTQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10875,7 +12948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:04:45 GMT + - Sat, 13 Jun 2020 21:47:17 GMT expires: - '-1' pragma: @@ -10887,7 +12960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4997' + - '4999' status: code: 201 message: Created @@ -10905,10 +12978,10 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMDliMDI1MjEtMWNjOS00OTFhLWEyNzItNDE2MjI0ZjkzMTMz?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2NkOWIwOTYtZTU5OC00YTNlLWFmYjUtZWJmNWNkZGI4ZTQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10920,7 +12993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:05:15 GMT + - Sat, 13 Jun 2020 21:47:47 GMT expires: - '-1' pragma: @@ -10952,14 +13025,14 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIcg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBM6Vc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -10968,7 +13041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:05:15 GMT + - Sat, 13 Jun 2020 21:47:48 GMT expires: - '-1' pragma: @@ -11000,8 +13073,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -11015,7 +13088,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:05:16 GMT + - Sat, 13 Jun 2020 21:47:48 GMT expires: - '-1' pragma: @@ -11045,8 +13118,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -11063,7 +13136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:05:16 GMT + - Sat, 13 Jun 2020 21:47:50 GMT expires: - '-1' pragma: @@ -11097,16 +13170,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lIcg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-262ab05337.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBM6Vc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-292ba136d5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -11115,7 +13188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:05:17 GMT + - Sat, 13 Jun 2020 21:47:50 GMT expires: - '-1' pragma: @@ -11151,8 +13224,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -11162,7 +13235,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -11170,11 +13243,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:05:17 GMT + - Sat, 13 Jun 2020 21:47:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -11202,57 +13275,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 15 May 2020 01:05: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub manual-failover - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11264,7 +13290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:06:04 GMT + - Sat, 13 Jun 2020 21:48:07 GMT expires: - '-1' pragma: @@ -11296,10 +13322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11311,7 +13337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:06:34 GMT + - Sat, 13 Jun 2020 21:48:37 GMT expires: - '-1' pragma: @@ -11343,10 +13369,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11358,7 +13384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:07:04 GMT + - Sat, 13 Jun 2020 21:49:08 GMT expires: - '-1' pragma: @@ -11390,10 +13416,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11405,7 +13431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:07:34 GMT + - Sat, 13 Jun 2020 21:49:38 GMT expires: - '-1' pragma: @@ -11437,10 +13463,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11452,7 +13478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:08:05 GMT + - Sat, 13 Jun 2020 21:50:09 GMT expires: - '-1' pragma: @@ -11484,10 +13510,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11499,7 +13525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:08:35 GMT + - Sat, 13 Jun 2020 21:50:38 GMT expires: - '-1' pragma: @@ -11531,10 +13557,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11546,7 +13572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:09:05 GMT + - Sat, 13 Jun 2020 21:51:09 GMT expires: - '-1' pragma: @@ -11578,10 +13604,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11593,7 +13619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:09:35 GMT + - Sat, 13 Jun 2020 21:51:39 GMT expires: - '-1' pragma: @@ -11625,10 +13651,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11640,7 +13666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:10:06 GMT + - Sat, 13 Jun 2020 21:52:10 GMT expires: - '-1' pragma: @@ -11672,10 +13698,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11687,7 +13713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:10:36 GMT + - Sat, 13 Jun 2020 21:52:39 GMT expires: - '-1' pragma: @@ -11719,10 +13745,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11734,7 +13760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:11:06 GMT + - Sat, 13 Jun 2020 21:53:10 GMT expires: - '-1' pragma: @@ -11766,10 +13792,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11781,7 +13807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:11:36 GMT + - Sat, 13 Jun 2020 21:53:40 GMT expires: - '-1' pragma: @@ -11813,10 +13839,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11828,7 +13854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:12:09 GMT + - Sat, 13 Jun 2020 21:54:11 GMT expires: - '-1' pragma: @@ -11860,10 +13886,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11875,7 +13901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:12:38 GMT + - Sat, 13 Jun 2020 21:54:42 GMT expires: - '-1' pragma: @@ -11907,10 +13933,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11922,7 +13948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:13:08 GMT + - Sat, 13 Jun 2020 21:55:11 GMT expires: - '-1' pragma: @@ -11954,10 +13980,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11969,7 +13995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:13:38 GMT + - Sat, 13 Jun 2020 21:55:42 GMT expires: - '-1' pragma: @@ -12001,10 +14027,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfY2UzYTg3OTYtNzA5OC00Nzc4LThlZjUtN2EwMzZhNzdkYTlj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYTI2ZTVmNTktNzQyOS00ZTA1LWExOTYtYTI3NjRmZTJlZjE3?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12016,7 +14042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:09 GMT + - Sat, 13 Jun 2020 21:56:13 GMT expires: - '-1' pragma: @@ -12048,8 +14074,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD @@ -12063,7 +14089,7 @@ interactions: content-length: - '0' date: - - Fri, 15 May 2020 01:14:10 GMT + - Sat, 13 Jun 2020 21:56:14 GMT expires: - '-1' pragma: @@ -12093,8 +14119,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST @@ -12111,7 +14137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:10 GMT + - Sat, 13 Jun 2020 21:56:14 GMT expires: - '-1' pragma: @@ -12145,16 +14171,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11?api-version=2020-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lLBc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-1962560949.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBN27U=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-5f7f081c5e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' headers: cache-control: - no-cache @@ -12163,7 +14189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:10 GMT + - Sat, 13 Jun 2020 21:56:15 GMT expires: - '-1' pragma: @@ -12195,37 +14221,129 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/TestIotExt1","name":"TestIotExt1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy1yMw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TestIotExt1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiotext1","endpoint":"sb://iothub-ns-testiotext-2312279-f90eed5388.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHub","name":"PaymaunHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAyn6+4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhub","endpoint":"sb://iothub-ns-paymaunhub-2363588-460f33d1a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=testiotextstor0;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Testing_Houman/providers/Microsoft.Devices/IotHubs/testHP","name":"testHP","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"Testing_Houman","etag":"AAAAAAytYhQ=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testHP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhp","endpoint":"sb://iothub-ns-testhp-2634624-42af86f47d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub","name":"ProHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAA2b4ws=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ProHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prohub","endpoint":"sb://iothub-ns-prohub-2773227-3cde9e3ef9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-int","name":"upx-adu-int","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAAywRXU=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-int.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-int","endpoint":"sb://iothub-ns-upx-adu-in-3020691-340db736ec.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/upx-adu-prod","name":"upx-adu-prod","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAAAA2SezE=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"upx-adu-prod.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"upx-adu-prod","endpoint":"sb://iothub-ns-upx-adu-pr-3020700-04500165c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTest","name":"PartitionTest","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAy2qjI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontest","endpoint":"sb://iothub-ns-partitiont-3040621-f2570be7f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iotupxhubwithidentity","name":"iotupxhubwithidentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAAAA00K5Q=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotupxhubwithidentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotupxhubwithidentity","endpoint":"sb://iothub-ns-iotupxhubw-3077075-18eb7054c3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rkiotsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_iliesrg;SharedAccessKey=****;EntityPath=rkiotsbqueue","authenticationType":"keyBased","name":"queue1","id":"3faf851a-e0ac-4954-b064-e77607171cf3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"containerblob"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"8dcce251-575b-4693-8091-a6a25fdaca10","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub","name":"rk-identity-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA2f/vc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"0.0.0.1"},{"filterName":"test1","action":"Reject","ipMask":"0.0.0.1"}],"hostName":"rk-identity-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-identity-hub","endpoint":"sb://iothub-ns-rk-identit-3174359-de82e52e4d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Network/privateEndpoints/rk-private-endpoint2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-identity-hub/PrivateEndpointConnections/rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","name":"rk-identity-hub.7355e244-e2ce-45ea-b458-9620aa888431","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0b169c39-3253-4dab-88db-f7ab702e0f6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PartitionTestHub","name":"PartitionTestHub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAAAAz1sW4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PartitionTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"partitiontesthub","endpoint":"sb://iothub-ns-partitiont-3285274-2bfad219d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/iot-identity-enabled-hub","name":"iot-identity-enabled-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAAAA0LW90=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-identity-enabled-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-identity-enabled-hub","endpoint":"sb://iothub-ns-iot-identi-3304820-0ed4338aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestbpawuh6dhmy2dgdf5;AccountKey=****","containerName":"","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"71f8b537-2ec1-4b5e-a6e5-48d4c5c3df79","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub","name":"identity-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2","etag":"AAAAAA2k4Dk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"identity-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identity-test-hub","endpoint":"sb://iothub-ns-identity-t-3439680-7c2b8e5f0c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"eh://test","entityPath":"entity","authenticationType":"identityBased","name":"EventHubIdentityEndpoint","id":"64b30e87-8f52-43ba-bcaa-c6e91dce327b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitestg5sybct6sfzppqhr2;AccountKey=****","containerName":"iothubcontainer1","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeqjglyarw4z6orjmpkcueroc6njp6ipmxshfm6fhlqxchs5g7kif6obvsjkjsxmk2/providers/Microsoft.Devices/IotHubs/identity-test-hub/PrivateEndpointConnections/identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","name":"identity-test-hub.e78c6ef6-5ec4-4527-ae74-6c386474d808","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ef29db2-69ec-4c1c-a6e8-c7f66d5cbdd8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAAAA2lLBc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3439906-1962560949.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"06ed7708-848a-4876-8692-fe02651ff073","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' - headers: - cache-control: - - no-cache + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbqTest-sbq"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate","endpoint":"sb://iothub-ns-dexterm-te-2333699-f60499ba54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate2","name":"dexterm-testiothubcreate2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5R8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature + > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId + = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName + = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAAA/20oY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAFqg4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAHTks=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABAN96s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11","name":"iot-hub-for-test-11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABBN27U=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11","endpoint":"sb://iothub-ns-iot-hub-fo-3621445-5f7f081c5e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"dfdf3716-8d1f-4e35-b796-2d4c14d43bbe","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + headers: + cache-control: + - no-cache content-length: - - '24173' + - '142325' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:11 GMT + - Sat, 13 Jun 2020 21:56:26 GMT expires: - '-1' pragma: @@ -12259,8 +14377,8 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE @@ -12270,7 +14388,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODhlYmVhYmQtZjM1ZC00Njg5LTlmZTQtNTM1N2JlYjlmNWQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjUzMjI5NjEtY2IzMS00YWNlLTk1MjItMzQxYTFiMmUyYjQy?api-version=2020-03-01&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -12278,11 +14396,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:12 GMT + - Sat, 13 Jun 2020 21:56:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODhlYmVhYmQtZjM1ZC00Njg5LTlmZTQtNTM1N2JlYjlmNWQ4?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjUzMjI5NjEtY2IzMS00YWNlLTk1MjItMzQxYTFiMmUyYjQy?api-version=2020-03-01&operationSource=os_ih pragma: - no-cache server: @@ -12292,7 +14410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -12310,10 +14428,10 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfODhlYmVhYmQtZjM1ZC00Njg5LTlmZTQtNTM1N2JlYjlmNWQ4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjUzMjI5NjEtY2IzMS00YWNlLTk1MjItMzQxYTFiMmUyYjQy?api-version=2020-03-01&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12325,7 +14443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 01:14:28 GMT + - Sat, 13 Jun 2020 21:56:42 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py index a350d3cdd0e..f0e01b564df 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py @@ -198,18 +198,6 @@ def test_iot_hub(self, resource_group, resource_group_location, storage_account) self.check('[0].name', '$Default') ]) - # Test 'az iot hub job list' - self.cmd('iot hub job list --hub-name {0}'.format(hub), checks=self.is_empty()) - - # Test 'az iot hub job show' - job_id = 'fake-job' - self.cmd('iot hub job show --hub-name {0} --job-id {1}'.format(hub, job_id), - expect_failure=True) - - # Test 'az iot hub job cancel' - self.cmd('iot hub job cancel --hub-name {0} --job-id {1}'.format(hub, job_id), - expect_failure=True) - # Test 'az iot hub show-quota-metrics' self.cmd('iot hub show-quota-metrics -n {0}'.format(hub), checks=[ self.check('length([*])', 2), From 52d3aa406a328a97030e65627793b612b6b1f325 Mon Sep 17 00:00:00 2001 From: Sapan Saxena Date: Tue, 16 Jun 2020 14:59:06 -0700 Subject: [PATCH 3/3] re-record the test session for 2019 profile --- .../recordings/test_iot_hub.yaml | 4210 +++++++++-------- 1 file changed, 2180 insertions(+), 2030 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml index c90a31a92e2..8964fede5cf 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/hybrid_2019_03_01/recordings/test_iot_hub.yaml @@ -18,21 +18,21 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/aprilpnpbugbash","name":"aprilpnpbugbash","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T01:56:00.5610388Z","primaryEndpoints":{"dfs":"https://aprilpnpbugbash.dfs.core.windows.net/","web":"https://aprilpnpbugbash.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash.blob.core.windows.net/","queue":"https://aprilpnpbugbash.queue.core.windows.net/","table":"https://aprilpnpbugbash.table.core.windows.net/","file":"https://aprilpnpbugbash.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aprilpnpbugbash-secondary.dfs.core.windows.net/","web":"https://aprilpnpbugbash-secondary.z13.web.core.windows.net/","blob":"https://aprilpnpbugbash-secondary.blob.core.windows.net/","queue":"https://aprilpnpbugbash-secondary.queue.core.windows.net/","table":"https://aprilpnpbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"dfs":"https://cs291d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs291d126603decx467axbe2.z13.web.core.windows.net/","blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus01","name":"csharpiotuapeastus01","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T21:49:04.0979858Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus01.blob.core.windows.net/","queue":"https://csharpiotuapeastus01.queue.core.windows.net/","table":"https://csharpiotuapeastus01.table.core.windows.net/","file":"https://csharpiotuapeastus01.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag172","name":"mgtlabdiag172","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T00:56:53.3999654Z","primaryEndpoints":{"blob":"https://mgtlabdiag172.blob.core.windows.net/","queue":"https://mgtlabdiag172.queue.core.windows.net/","table":"https://mgtlabdiag172.table.core.windows.net/","file":"https://mgtlabdiag172.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Storage/storageAccounts/sqlimagestore","name":"sqlimagestore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T15:29:06.0354793Z","primaryEndpoints":{"dfs":"https://sqlimagestore.dfs.core.windows.net/","web":"https://sqlimagestore.z13.web.core.windows.net/","blob":"https://sqlimagestore.blob.core.windows.net/","queue":"https://sqlimagestore.queue.core.windows.net/","table":"https://sqlimagestore.table.core.windows.net/","file":"https://sqlimagestore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sqlimagestore-secondary.dfs.core.windows.net/","web":"https://sqlimagestore-secondary.z13.web.core.windows.net/","blob":"https://sqlimagestore-secondary.blob.core.windows.net/","queue":"https://sqlimagestore-secondary.queue.core.windows.net/","table":"https://sqlimagestore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/zadixon","name":"zadixon","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-06T00:29:47.9301744Z","primaryEndpoints":{"dfs":"https://zadixon.dfs.core.windows.net/","web":"https://zadixon.z13.web.core.windows.net/","blob":"https://zadixon.blob.core.windows.net/","queue":"https://zadixon.queue.core.windows.net/","table":"https://zadixon.table.core.windows.net/","file":"https://zadixon.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zadixon-secondary.dfs.core.windows.net/","web":"https://zadixon-secondary.z13.web.core.windows.net/","blob":"https://zadixon-secondary.blob.core.windows.net/","queue":"https://zadixon-secondary.queue.core.windows.net/","table":"https://zadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"dfs":"https://avichlogs.dfs.core.windows.net/","web":"https://avichlogs.z20.web.core.windows.net/","blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avichlogs-secondary.dfs.core.windows.net/","web":"https://avichlogs-secondary.z20.web.core.windows.net/","blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcrg982788/providers/Microsoft.Storage/storageAccounts/affanbc8902","name":"affanbc8902","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-30T19:24:20.1876978Z","primaryEndpoints":{"blob":"https://affanbc8902.blob.core.windows.net/","queue":"https://affanbc8902.queue.core.windows.net/","table":"https://affanbc8902.table.core.windows.net/","file":"https://affanbc8902.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-14T17:44:15.7621281Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-14T17:44:15.7621281Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-14T17:44:15.6214738Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000801b6df4","name":"cs410030000801b6df4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T19:06:51.2300069Z","primaryEndpoints":{"dfs":"https://cs410030000801b6df4.dfs.core.windows.net/","web":"https://cs410030000801b6df4.z22.web.core.windows.net/","blob":"https://cs410030000801b6df4.blob.core.windows.net/","queue":"https://cs410030000801b6df4.queue.core.windows.net/","table":"https://cs410030000801b6df4.table.core.windows.net/","file":"https://cs410030000801b6df4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"dfs":"https://cs491d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs491d126603decx467axbe2.z22.web.core.windows.net/","blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cswestus1003bffda5eca634","name":"cswestus1003bffda5eca634","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T01:37:40.4375181Z","primaryEndpoints":{"dfs":"https://cswestus1003bffda5eca634.dfs.core.windows.net/","web":"https://cswestus1003bffda5eca634.z22.web.core.windows.net/","blob":"https://cswestus1003bffda5eca634.blob.core.windows.net/","queue":"https://cswestus1003bffda5eca634.queue.core.windows.net/","table":"https://cswestus1003bffda5eca634.table.core.windows.net/","file":"https://cswestus1003bffda5eca634.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"dfs":"https://dextermiotdefaultevent.dfs.core.windows.net/","web":"https://dextermiotdefaultevent.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dextermiotdefaultevent-secondary.dfs.core.windows.net/","web":"https://dextermiotdefaultevent-secondary.z22.web.core.windows.net/","blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_c_westus_c_westus/providers/Microsoft.Storage/storageAccounts/f9c418a6510b611ea9b85ae","name":"f9c418a6510b611ea9b85ae","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created-by":"azure"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-27T01:38:30.9156217Z","primaryEndpoints":{"dfs":"https://f9c418a6510b611ea9b85ae.dfs.core.windows.net/","web":"https://f9c418a6510b611ea9b85ae.z22.web.core.windows.net/","blob":"https://f9c418a6510b611ea9b85ae.blob.core.windows.net/","queue":"https://f9c418a6510b611ea9b85ae.queue.core.windows.net/","table":"https://f9c418a6510b611ea9b85ae.table.core.windows.net/","file":"https://f9c418a6510b611ea9b85ae.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-talks-rg/providers/Microsoft.Storage/storageAccounts/gwv2overview","name":"gwv2overview","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-18T19:45:27.2337945Z","primaryEndpoints":{"dfs":"https://gwv2overview.dfs.core.windows.net/","web":"https://gwv2overview.z22.web.core.windows.net/","blob":"https://gwv2overview.blob.core.windows.net/","queue":"https://gwv2overview.queue.core.windows.net/","table":"https://gwv2overview.table.core.windows.net/","file":"https://gwv2overview.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestadministrator","name":"iothubtestadministrator","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-04T01:18:18.5399619Z","primaryEndpoints":{"blob":"https://iothubtestadministrator.blob.core.windows.net/","queue":"https://iothubtestadministrator.queue.core.windows.net/","table":"https://iothubtestadministrator.table.core.windows.net/","file":"https://iothubtestadministrator.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestadministrator-secondary.blob.core.windows.net/","queue":"https://iothubtestadministrator-secondary.queue.core.windows.net/","table":"https://iothubtestadministrator-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen10","name":"iothubtestagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T10:05:13.4246717Z","primaryEndpoints":{"blob":"https://iothubtestagen10.blob.core.windows.net/","queue":"https://iothubtestagen10.queue.core.windows.net/","table":"https://iothubtestagen10.table.core.windows.net/","file":"https://iothubtestagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestagen10-secondary.queue.core.windows.net/","table":"https://iothubtestagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen11","name":"iothubtestagen11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T02:23:10.5102160Z","primaryEndpoints":{"blob":"https://iothubtestagen11.blob.core.windows.net/","queue":"https://iothubtestagen11.queue.core.windows.net/","table":"https://iothubtestagen11.table.core.windows.net/","file":"https://iothubtestagen11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen11-secondary.blob.core.windows.net/","queue":"https://iothubtestagen11-secondary.queue.core.windows.net/","table":"https://iothubtestagen11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen12","name":"iothubtestagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T07:09:07.0627024Z","primaryEndpoints":{"blob":"https://iothubtestagen12.blob.core.windows.net/","queue":"https://iothubtestagen12.queue.core.windows.net/","table":"https://iothubtestagen12.table.core.windows.net/","file":"https://iothubtestagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestagen12-secondary.queue.core.windows.net/","table":"https://iothubtestagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen13","name":"iothubtestagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T22:59:14.9381300Z","primaryEndpoints":{"blob":"https://iothubtestagen13.blob.core.windows.net/","queue":"https://iothubtestagen13.queue.core.windows.net/","table":"https://iothubtestagen13.table.core.windows.net/","file":"https://iothubtestagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestagen13-secondary.queue.core.windows.net/","table":"https://iothubtestagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen14","name":"iothubtestagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T03:17:58.2833024Z","primaryEndpoints":{"blob":"https://iothubtestagen14.blob.core.windows.net/","queue":"https://iothubtestagen14.queue.core.windows.net/","table":"https://iothubtestagen14.table.core.windows.net/","file":"https://iothubtestagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestagen14-secondary.queue.core.windows.net/","table":"https://iothubtestagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen15","name":"iothubtestagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-23T23:31:45.2765000Z","primaryEndpoints":{"blob":"https://iothubtestagen15.blob.core.windows.net/","queue":"https://iothubtestagen15.queue.core.windows.net/","table":"https://iothubtestagen15.table.core.windows.net/","file":"https://iothubtestagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestagen15-secondary.queue.core.windows.net/","table":"https://iothubtestagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent3","name":"iothubtestagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T12:35:10.5203999Z","primaryEndpoints":{"blob":"https://iothubtestagent3.blob.core.windows.net/","queue":"https://iothubtestagent3.queue.core.windows.net/","table":"https://iothubtestagent3.table.core.windows.net/","file":"https://iothubtestagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestagent3-secondary.queue.core.windows.net/","table":"https://iothubtestagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent4","name":"iothubtestagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:17:54.1226653Z","primaryEndpoints":{"blob":"https://iothubtestagent4.blob.core.windows.net/","queue":"https://iothubtestagent4.queue.core.windows.net/","table":"https://iothubtestagent4.table.core.windows.net/","file":"https://iothubtestagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestagent4-secondary.queue.core.windows.net/","table":"https://iothubtestagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent5","name":"iothubtestagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T18:49:31.3039985Z","primaryEndpoints":{"blob":"https://iothubtestagent5.blob.core.windows.net/","queue":"https://iothubtestagent5.queue.core.windows.net/","table":"https://iothubtestagent5.table.core.windows.net/","file":"https://iothubtestagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestagent5-secondary.queue.core.windows.net/","table":"https://iothubtestagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent6","name":"iothubtestagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T20:48:18.6972003Z","primaryEndpoints":{"blob":"https://iothubtestagent6.blob.core.windows.net/","queue":"https://iothubtestagent6.queue.core.windows.net/","table":"https://iothubtestagent6.table.core.windows.net/","file":"https://iothubtestagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestagent6-secondary.queue.core.windows.net/","table":"https://iothubtestagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent7","name":"iothubtestagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T18:13:17.5284420Z","primaryEndpoints":{"blob":"https://iothubtestagent7.blob.core.windows.net/","queue":"https://iothubtestagent7.queue.core.windows.net/","table":"https://iothubtestagent7.table.core.windows.net/","file":"https://iothubtestagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestagent7-secondary.queue.core.windows.net/","table":"https://iothubtestagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent8","name":"iothubtestagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T05:50:45.0235433Z","primaryEndpoints":{"blob":"https://iothubtestagent8.blob.core.windows.net/","queue":"https://iothubtestagent8.queue.core.windows.net/","table":"https://iothubtestagent8.table.core.windows.net/","file":"https://iothubtestagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestagent8-secondary.queue.core.windows.net/","table":"https://iothubtestagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent9","name":"iothubtestagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T12:08:19.1985977Z","primaryEndpoints":{"blob":"https://iothubtestagent9.blob.core.windows.net/","queue":"https://iothubtestagent9.queue.core.windows.net/","table":"https://iothubtestagent9.table.core.windows.net/","file":"https://iothubtestagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestagent9-secondary.queue.core.windows.net/","table":"https://iothubtestagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestailn","name":"iothubtestailn","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T21:30:26.5327702Z","primaryEndpoints":{"blob":"https://iothubtestailn.blob.core.windows.net/","queue":"https://iothubtestailn.queue.core.windows.net/","table":"https://iothubtestailn.table.core.windows.net/","file":"https://iothubtestailn.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestailn-secondary.blob.core.windows.net/","queue":"https://iothubtestailn-secondary.queue.core.windows.net/","table":"https://iothubtestailn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestalklin","name":"iothubtestalklin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T21:44:41.0326156Z","primaryEndpoints":{"blob":"https://iothubtestalklin.blob.core.windows.net/","queue":"https://iothubtestalklin.queue.core.windows.net/","table":"https://iothubtestalklin.table.core.windows.net/","file":"https://iothubtestalklin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestalklin-secondary.blob.core.windows.net/","queue":"https://iothubtestalklin-secondary.queue.core.windows.net/","table":"https://iothubtestalklin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestancan","name":"iothubtestancan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-15T20:53:52.5245873Z","primaryEndpoints":{"blob":"https://iothubtestancan.blob.core.windows.net/","queue":"https://iothubtestancan.queue.core.windows.net/","table":"https://iothubtestancan.table.core.windows.net/","file":"https://iothubtestancan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestancan-secondary.blob.core.windows.net/","queue":"https://iothubtestancan-secondary.queue.core.windows.net/","table":"https://iothubtestancan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestankurkul","name":"iothubtestankurkul","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T18:55:33.5852523Z","primaryEndpoints":{"blob":"https://iothubtestankurkul.blob.core.windows.net/","queue":"https://iothubtestankurkul.queue.core.windows.net/","table":"https://iothubtestankurkul.table.core.windows.net/","file":"https://iothubtestankurkul.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestankurkul-secondary.blob.core.windows.net/","queue":"https://iothubtestankurkul-secondary.queue.core.windows.net/","table":"https://iothubtestankurkul-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestanways","name":"iothubtestanways","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T23:37:24.8038321Z","primaryEndpoints":{"blob":"https://iothubtestanways.blob.core.windows.net/","queue":"https://iothubtestanways.queue.core.windows.net/","table":"https://iothubtestanways.table.core.windows.net/","file":"https://iothubtestanways.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestanways-secondary.blob.core.windows.net/","queue":"https://iothubtestanways-secondary.queue.core.windows.net/","table":"https://iothubtestanways-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent0","name":"iothubtestarmagent0","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:25:07.6231752Z","primaryEndpoints":{"blob":"https://iothubtestarmagent0.blob.core.windows.net/","queue":"https://iothubtestarmagent0.queue.core.windows.net/","table":"https://iothubtestarmagent0.table.core.windows.net/","file":"https://iothubtestarmagent0.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent0-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent0-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent0-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent1","name":"iothubtestarmagent1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:06.1819274Z","primaryEndpoints":{"blob":"https://iothubtestarmagent1.blob.core.windows.net/","queue":"https://iothubtestarmagent1.queue.core.windows.net/","table":"https://iothubtestarmagent1.table.core.windows.net/","file":"https://iothubtestarmagent1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent1-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent1-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent10","name":"iothubtestarmagent10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-04T00:00:33.5483450Z","primaryEndpoints":{"blob":"https://iothubtestarmagent10.blob.core.windows.net/","queue":"https://iothubtestarmagent10.queue.core.windows.net/","table":"https://iothubtestarmagent10.table.core.windows.net/","file":"https://iothubtestarmagent10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent10-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent10-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent11","name":"iothubtestarmagent11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:30:52.2440378Z","primaryEndpoints":{"blob":"https://iothubtestarmagent11.blob.core.windows.net/","queue":"https://iothubtestarmagent11.queue.core.windows.net/","table":"https://iothubtestarmagent11.table.core.windows.net/","file":"https://iothubtestarmagent11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent11-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent11-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent12","name":"iothubtestarmagent12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:32.3588053Z","primaryEndpoints":{"blob":"https://iothubtestarmagent12.blob.core.windows.net/","queue":"https://iothubtestarmagent12.queue.core.windows.net/","table":"https://iothubtestarmagent12.table.core.windows.net/","file":"https://iothubtestarmagent12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent12-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent12-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent13","name":"iothubtestarmagent13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:27.6550375Z","primaryEndpoints":{"blob":"https://iothubtestarmagent13.blob.core.windows.net/","queue":"https://iothubtestarmagent13.queue.core.windows.net/","table":"https://iothubtestarmagent13.table.core.windows.net/","file":"https://iothubtestarmagent13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent13-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent13-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent14","name":"iothubtestarmagent14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:42:37.3561862Z","primaryEndpoints":{"blob":"https://iothubtestarmagent14.blob.core.windows.net/","queue":"https://iothubtestarmagent14.queue.core.windows.net/","table":"https://iothubtestarmagent14.table.core.windows.net/","file":"https://iothubtestarmagent14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent14-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent14-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent15","name":"iothubtestarmagent15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:43:42.1672649Z","primaryEndpoints":{"blob":"https://iothubtestarmagent15.blob.core.windows.net/","queue":"https://iothubtestarmagent15.queue.core.windows.net/","table":"https://iothubtestarmagent15.table.core.windows.net/","file":"https://iothubtestarmagent15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent15-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent15-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent16","name":"iothubtestarmagent16","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:41:06.9895448Z","primaryEndpoints":{"blob":"https://iothubtestarmagent16.blob.core.windows.net/","queue":"https://iothubtestarmagent16.queue.core.windows.net/","table":"https://iothubtestarmagent16.table.core.windows.net/","file":"https://iothubtestarmagent16.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent16-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent16-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent2","name":"iothubtestarmagent2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:14.4324743Z","primaryEndpoints":{"blob":"https://iothubtestarmagent2.blob.core.windows.net/","queue":"https://iothubtestarmagent2.queue.core.windows.net/","table":"https://iothubtestarmagent2.table.core.windows.net/","file":"https://iothubtestarmagent2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent2-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent2-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent3","name":"iothubtestarmagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:05:38.8293155Z","primaryEndpoints":{"blob":"https://iothubtestarmagent3.blob.core.windows.net/","queue":"https://iothubtestarmagent3.queue.core.windows.net/","table":"https://iothubtestarmagent3.table.core.windows.net/","file":"https://iothubtestarmagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent3-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent4","name":"iothubtestarmagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T19:43:06.4252573Z","primaryEndpoints":{"blob":"https://iothubtestarmagent4.blob.core.windows.net/","queue":"https://iothubtestarmagent4.queue.core.windows.net/","table":"https://iothubtestarmagent4.table.core.windows.net/","file":"https://iothubtestarmagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent4-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent5","name":"iothubtestarmagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T04:07:15.4659852Z","primaryEndpoints":{"blob":"https://iothubtestarmagent5.blob.core.windows.net/","queue":"https://iothubtestarmagent5.queue.core.windows.net/","table":"https://iothubtestarmagent5.table.core.windows.net/","file":"https://iothubtestarmagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent5-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent6","name":"iothubtestarmagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T23:05:24.2026638Z","primaryEndpoints":{"blob":"https://iothubtestarmagent6.blob.core.windows.net/","queue":"https://iothubtestarmagent6.queue.core.windows.net/","table":"https://iothubtestarmagent6.table.core.windows.net/","file":"https://iothubtestarmagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent6-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent7","name":"iothubtestarmagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T04:19:55.0567985Z","primaryEndpoints":{"blob":"https://iothubtestarmagent7.blob.core.windows.net/","queue":"https://iothubtestarmagent7.queue.core.windows.net/","table":"https://iothubtestarmagent7.table.core.windows.net/","file":"https://iothubtestarmagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent7-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent8","name":"iothubtestarmagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:51:51.1994925Z","primaryEndpoints":{"blob":"https://iothubtestarmagent8.blob.core.windows.net/","queue":"https://iothubtestarmagent8.queue.core.windows.net/","table":"https://iothubtestarmagent8.table.core.windows.net/","file":"https://iothubtestarmagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent8-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent9","name":"iothubtestarmagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:46:30.6691686Z","primaryEndpoints":{"blob":"https://iothubtestarmagent9.blob.core.windows.net/","queue":"https://iothubtestarmagent9.queue.core.windows.net/","table":"https://iothubtestarmagent9.table.core.windows.net/","file":"https://iothubtestarmagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent9-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestartr","name":"iothubtestartr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T18:36:14.8722411Z","primaryEndpoints":{"blob":"https://iothubtestartr.blob.core.windows.net/","queue":"https://iothubtestartr.queue.core.windows.net/","table":"https://iothubtestartr.table.core.windows.net/","file":"https://iothubtestartr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestartr-secondary.blob.core.windows.net/","queue":"https://iothubtestartr-secondary.queue.core.windows.net/","table":"https://iothubtestartr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavich","name":"iothubtestavich","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-04T00:34:14.7642048Z","primaryEndpoints":{"blob":"https://iothubtestavich.blob.core.windows.net/","queue":"https://iothubtestavich.queue.core.windows.net/","table":"https://iothubtestavich.table.core.windows.net/","file":"https://iothubtestavich.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavich-secondary.blob.core.windows.net/","queue":"https://iothubtestavich-secondary.queue.core.windows.net/","table":"https://iothubtestavich-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavran","name":"iothubtestavran","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T07:08:17.6023949Z","primaryEndpoints":{"blob":"https://iothubtestavran.blob.core.windows.net/","queue":"https://iothubtestavran.queue.core.windows.net/","table":"https://iothubtestavran.table.core.windows.net/","file":"https://iothubtestavran.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavran-secondary.blob.core.windows.net/","queue":"https://iothubtestavran-secondary.queue.core.windows.net/","table":"https://iothubtestavran-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestaziotgit","name":"iothubtestaziotgit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-26T08:20:05.9498662Z","primaryEndpoints":{"blob":"https://iothubtestaziotgit.blob.core.windows.net/","queue":"https://iothubtestaziotgit.queue.core.windows.net/","table":"https://iothubtestaziotgit.table.core.windows.net/","file":"https://iothubtestaziotgit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestaziotgit-secondary.blob.core.windows.net/","queue":"https://iothubtestaziotgit-secondary.queue.core.windows.net/","table":"https://iothubtestaziotgit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestchschill","name":"iothubtestchschill","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T19:28:33.3933505Z","primaryEndpoints":{"blob":"https://iothubtestchschill.blob.core.windows.net/","queue":"https://iothubtestchschill.queue.core.windows.net/","table":"https://iothubtestchschill.table.core.windows.net/","file":"https://iothubtestchschill.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestchschill-secondary.blob.core.windows.net/","queue":"https://iothubtestchschill-secondary.queue.core.windows.net/","table":"https://iothubtestchschill-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdemuniap","name":"iothubtestdemuniap","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T18:05:33.8976512Z","primaryEndpoints":{"blob":"https://iothubtestdemuniap.blob.core.windows.net/","queue":"https://iothubtestdemuniap.queue.core.windows.net/","table":"https://iothubtestdemuniap.table.core.windows.net/","file":"https://iothubtestdemuniap.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdemuniap-secondary.blob.core.windows.net/","queue":"https://iothubtestdemuniap-secondary.queue.core.windows.net/","table":"https://iothubtestdemuniap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdmpypin","name":"iothubtestdmpypin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T02:06:07.6557833Z","primaryEndpoints":{"blob":"https://iothubtestdmpypin.blob.core.windows.net/","queue":"https://iothubtestdmpypin.queue.core.windows.net/","table":"https://iothubtestdmpypin.table.core.windows.net/","file":"https://iothubtestdmpypin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdmpypin-secondary.blob.core.windows.net/","queue":"https://iothubtestdmpypin-secondary.queue.core.windows.net/","table":"https://iothubtestdmpypin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesterpogas","name":"iothubtesterpogas","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:42:35.6790670Z","primaryEndpoints":{"blob":"https://iothubtesterpogas.blob.core.windows.net/","queue":"https://iothubtesterpogas.queue.core.windows.net/","table":"https://iothubtesterpogas.table.core.windows.net/","file":"https://iothubtesterpogas.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesterpogas-secondary.blob.core.windows.net/","queue":"https://iothubtesterpogas-secondary.queue.core.windows.net/","table":"https://iothubtesterpogas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestevansim","name":"iothubtestevansim","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T19:23:28.4781666Z","primaryEndpoints":{"blob":"https://iothubtestevansim.blob.core.windows.net/","queue":"https://iothubtestevansim.queue.core.windows.net/","table":"https://iothubtestevansim.table.core.windows.net/","file":"https://iothubtestevansim.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestevansim-secondary.blob.core.windows.net/","queue":"https://iothubtestevansim-secondary.queue.core.windows.net/","table":"https://iothubtestevansim-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestfilipst","name":"iothubtestfilipst","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T18:49:48.9517375Z","primaryEndpoints":{"blob":"https://iothubtestfilipst.blob.core.windows.net/","queue":"https://iothubtestfilipst.queue.core.windows.net/","table":"https://iothubtestfilipst.table.core.windows.net/","file":"https://iothubtestfilipst.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestfilipst-secondary.blob.core.windows.net/","queue":"https://iothubtestfilipst-secondary.queue.core.windows.net/","table":"https://iothubtestfilipst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesthaavula","name":"iothubtesthaavula","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T19:46:15.8018780Z","primaryEndpoints":{"blob":"https://iothubtesthaavula.blob.core.windows.net/","queue":"https://iothubtesthaavula.queue.core.windows.net/","table":"https://iothubtesthaavula.table.core.windows.net/","file":"https://iothubtesthaavula.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesthaavula-secondary.blob.core.windows.net/","queue":"https://iothubtesthaavula-secondary.queue.core.windows.net/","table":"https://iothubtesthaavula-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestiotadmin","name":"iothubtestiotadmin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T06:15:38.7880310Z","primaryEndpoints":{"blob":"https://iothubtestiotadmin.blob.core.windows.net/","queue":"https://iothubtestiotadmin.queue.core.windows.net/","table":"https://iothubtestiotadmin.table.core.windows.net/","file":"https://iothubtestiotadmin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestiotadmin-secondary.blob.core.windows.net/","queue":"https://iothubtestiotadmin-secondary.queue.core.windows.net/","table":"https://iothubtestiotadmin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestisyama","name":"iothubtestisyama","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T20:16:57.8635776Z","primaryEndpoints":{"blob":"https://iothubtestisyama.blob.core.windows.net/","queue":"https://iothubtestisyama.queue.core.windows.net/","table":"https://iothubtestisyama.table.core.windows.net/","file":"https://iothubtestisyama.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestisyama-secondary.blob.core.windows.net/","queue":"https://iothubtestisyama-secondary.queue.core.windows.net/","table":"https://iothubtestisyama-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjacoimba","name":"iothubtestjacoimba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-03T13:35:42.2046780Z","primaryEndpoints":{"blob":"https://iothubtestjacoimba.blob.core.windows.net/","queue":"https://iothubtestjacoimba.queue.core.windows.net/","table":"https://iothubtestjacoimba.table.core.windows.net/","file":"https://iothubtestjacoimba.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjacoimba-secondary.blob.core.windows.net/","queue":"https://iothubtestjacoimba-secondary.queue.core.windows.net/","table":"https://iothubtestjacoimba-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjichang","name":"iothubtestjichang","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T20:48:51.2697659Z","primaryEndpoints":{"blob":"https://iothubtestjichang.blob.core.windows.net/","queue":"https://iothubtestjichang.queue.core.windows.net/","table":"https://iothubtestjichang.table.core.windows.net/","file":"https://iothubtestjichang.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjichang-secondary.blob.core.windows.net/","queue":"https://iothubtestjichang-secondary.queue.core.windows.net/","table":"https://iothubtestjichang-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjitenkos","name":"iothubtestjitenkos","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-21T20:10:24.8341568Z","primaryEndpoints":{"blob":"https://iothubtestjitenkos.blob.core.windows.net/","queue":"https://iothubtestjitenkos.queue.core.windows.net/","table":"https://iothubtestjitenkos.table.core.windows.net/","file":"https://iothubtestjitenkos.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjitenkos-secondary.blob.core.windows.net/","queue":"https://iothubtestjitenkos-secondary.queue.core.windows.net/","table":"https://iothubtestjitenkos-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjucarpio","name":"iothubtestjucarpio","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-20T21:23:53.2553997Z","primaryEndpoints":{"blob":"https://iothubtestjucarpio.blob.core.windows.net/","queue":"https://iothubtestjucarpio.queue.core.windows.net/","table":"https://iothubtestjucarpio.table.core.windows.net/","file":"https://iothubtestjucarpio.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjucarpio-secondary.blob.core.windows.net/","queue":"https://iothubtestjucarpio-secondary.queue.core.windows.net/","table":"https://iothubtestjucarpio-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkaagarw","name":"iothubtestkaagarw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-02T22:17:52.7382855Z","primaryEndpoints":{"blob":"https://iothubtestkaagarw.blob.core.windows.net/","queue":"https://iothubtestkaagarw.queue.core.windows.net/","table":"https://iothubtestkaagarw.table.core.windows.net/","file":"https://iothubtestkaagarw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkaagarw-secondary.blob.core.windows.net/","queue":"https://iothubtestkaagarw-secondary.queue.core.windows.net/","table":"https://iothubtestkaagarw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkanoda","name":"iothubtestkanoda","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T20:18:58.8099190Z","primaryEndpoints":{"blob":"https://iothubtestkanoda.blob.core.windows.net/","queue":"https://iothubtestkanoda.queue.core.windows.net/","table":"https://iothubtestkanoda.table.core.windows.net/","file":"https://iothubtestkanoda.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkanoda-secondary.blob.core.windows.net/","queue":"https://iothubtestkanoda-secondary.queue.core.windows.net/","table":"https://iothubtestkanoda-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlinsqi","name":"iothubtestlinsqi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T06:56:19.5684188Z","primaryEndpoints":{"blob":"https://iothubtestlinsqi.blob.core.windows.net/","queue":"https://iothubtestlinsqi.queue.core.windows.net/","table":"https://iothubtestlinsqi.table.core.windows.net/","file":"https://iothubtestlinsqi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlinsqi-secondary.blob.core.windows.net/","queue":"https://iothubtestlinsqi-secondary.queue.core.windows.net/","table":"https://iothubtestlinsqi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlygasch","name":"iothubtestlygasch","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T22:53:48.2371055Z","primaryEndpoints":{"blob":"https://iothubtestlygasch.blob.core.windows.net/","queue":"https://iothubtestlygasch.queue.core.windows.net/","table":"https://iothubtestlygasch.table.core.windows.net/","file":"https://iothubtestlygasch.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlygasch-secondary.blob.core.windows.net/","queue":"https://iothubtestlygasch-secondary.queue.core.windows.net/","table":"https://iothubtestlygasch-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaazer","name":"iothubtestmaazer","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T20:04:50.5225085Z","primaryEndpoints":{"blob":"https://iothubtestmaazer.blob.core.windows.net/","queue":"https://iothubtestmaazer.queue.core.windows.net/","table":"https://iothubtestmaazer.table.core.windows.net/","file":"https://iothubtestmaazer.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaazer-secondary.blob.core.windows.net/","queue":"https://iothubtestmaazer-secondary.queue.core.windows.net/","table":"https://iothubtestmaazer-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaga","name":"iothubtestmaga","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T22:18:11.6739090Z","primaryEndpoints":{"blob":"https://iothubtestmaga.blob.core.windows.net/","queue":"https://iothubtestmaga.queue.core.windows.net/","table":"https://iothubtestmaga.table.core.windows.net/","file":"https://iothubtestmaga.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaga-secondary.blob.core.windows.net/","queue":"https://iothubtestmaga-secondary.queue.core.windows.net/","table":"https://iothubtestmaga-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmatwal","name":"iothubtestmatwal","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:32:55.9700835Z","primaryEndpoints":{"blob":"https://iothubtestmatwal.blob.core.windows.net/","queue":"https://iothubtestmatwal.queue.core.windows.net/","table":"https://iothubtestmatwal.table.core.windows.net/","file":"https://iothubtestmatwal.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmatwal-secondary.blob.core.windows.net/","queue":"https://iothubtestmatwal-secondary.queue.core.windows.net/","table":"https://iothubtestmatwal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestminune","name":"iothubtestminune","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T00:17:59.9927105Z","primaryEndpoints":{"blob":"https://iothubtestminune.blob.core.windows.net/","queue":"https://iothubtestminune.queue.core.windows.net/","table":"https://iothubtestminune.table.core.windows.net/","file":"https://iothubtestminune.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestminune-secondary.blob.core.windows.net/","queue":"https://iothubtestminune-secondary.queue.core.windows.net/","table":"https://iothubtestminune-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmugunm","name":"iothubtestmugunm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T18:43:40.8831823Z","primaryEndpoints":{"blob":"https://iothubtestmugunm.blob.core.windows.net/","queue":"https://iothubtestmugunm.queue.core.windows.net/","table":"https://iothubtestmugunm.table.core.windows.net/","file":"https://iothubtestmugunm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmugunm-secondary.blob.core.windows.net/","queue":"https://iothubtestmugunm-secondary.queue.core.windows.net/","table":"https://iothubtestmugunm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnadeshpa","name":"iothubtestnadeshpa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-26T23:12:51.2252415Z","primaryEndpoints":{"blob":"https://iothubtestnadeshpa.blob.core.windows.net/","queue":"https://iothubtestnadeshpa.queue.core.windows.net/","table":"https://iothubtestnadeshpa.table.core.windows.net/","file":"https://iothubtestnadeshpa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnadeshpa-secondary.blob.core.windows.net/","queue":"https://iothubtestnadeshpa-secondary.queue.core.windows.net/","table":"https://iothubtestnadeshpa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnebanfic","name":"iothubtestnebanfic","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:56:11.3814714Z","primaryEndpoints":{"blob":"https://iothubtestnebanfic.blob.core.windows.net/","queue":"https://iothubtestnebanfic.queue.core.windows.net/","table":"https://iothubtestnebanfic.table.core.windows.net/","file":"https://iothubtestnebanfic.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnebanfic-secondary.blob.core.windows.net/","queue":"https://iothubtestnebanfic-secondary.queue.core.windows.net/","table":"https://iothubtestnebanfic-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnimengan","name":"iothubtestnimengan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-01T14:31:46.6447731Z","primaryEndpoints":{"blob":"https://iothubtestnimengan.blob.core.windows.net/","queue":"https://iothubtestnimengan.queue.core.windows.net/","table":"https://iothubtestnimengan.table.core.windows.net/","file":"https://iothubtestnimengan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnimengan-secondary.blob.core.windows.net/","queue":"https://iothubtestnimengan-secondary.queue.core.windows.net/","table":"https://iothubtestnimengan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnivithla","name":"iothubtestnivithla","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T02:25:41.1262385Z","primaryEndpoints":{"blob":"https://iothubtestnivithla.blob.core.windows.net/","queue":"https://iothubtestnivithla.queue.core.windows.net/","table":"https://iothubtestnivithla.table.core.windows.net/","file":"https://iothubtestnivithla.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnivithla-secondary.blob.core.windows.net/","queue":"https://iothubtestnivithla-secondary.queue.core.windows.net/","table":"https://iothubtestnivithla-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprashmo","name":"iothubtestprashmo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-10T21:44:41.8251549Z","primaryEndpoints":{"blob":"https://iothubtestprashmo.blob.core.windows.net/","queue":"https://iothubtestprashmo.queue.core.windows.net/","table":"https://iothubtestprashmo.table.core.windows.net/","file":"https://iothubtestprashmo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprashmo-secondary.blob.core.windows.net/","queue":"https://iothubtestprashmo-secondary.queue.core.windows.net/","table":"https://iothubtestprashmo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprepr","name":"iothubtestprepr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-05T17:19:25.3718430Z","primaryEndpoints":{"blob":"https://iothubtestprepr.blob.core.windows.net/","queue":"https://iothubtestprepr.queue.core.windows.net/","table":"https://iothubtestprepr.table.core.windows.net/","file":"https://iothubtestprepr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprepr-secondary.blob.core.windows.net/","queue":"https://iothubtestprepr-secondary.queue.core.windows.net/","table":"https://iothubtestprepr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrajave","name":"iothubtestrajave","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-20T00:31:23.1768369Z","primaryEndpoints":{"blob":"https://iothubtestrajave.blob.core.windows.net/","queue":"https://iothubtestrajave.queue.core.windows.net/","table":"https://iothubtestrajave.table.core.windows.net/","file":"https://iothubtestrajave.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrajave-secondary.blob.core.windows.net/","queue":"https://iothubtestrajave-secondary.queue.core.windows.net/","table":"https://iothubtestrajave-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestraviy","name":"iothubtestraviy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T17:42:52.3734464Z","primaryEndpoints":{"blob":"https://iothubtestraviy.blob.core.windows.net/","queue":"https://iothubtestraviy.queue.core.windows.net/","table":"https://iothubtestraviy.table.core.windows.net/","file":"https://iothubtestraviy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestraviy-secondary.blob.core.windows.net/","queue":"https://iothubtestraviy-secondary.queue.core.windows.net/","table":"https://iothubtestraviy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrechan","name":"iothubtestrechan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:57:31.1606191Z","primaryEndpoints":{"blob":"https://iothubtestrechan.blob.core.windows.net/","queue":"https://iothubtestrechan.queue.core.windows.net/","table":"https://iothubtestrechan.table.core.windows.net/","file":"https://iothubtestrechan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrechan-secondary.blob.core.windows.net/","queue":"https://iothubtestrechan-secondary.queue.core.windows.net/","table":"https://iothubtestrechan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrentu","name":"iothubtestrentu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:40:53.7087040Z","primaryEndpoints":{"blob":"https://iothubtestrentu.blob.core.windows.net/","queue":"https://iothubtestrentu.queue.core.windows.net/","table":"https://iothubtestrentu.table.core.windows.net/","file":"https://iothubtestrentu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrentu-secondary.blob.core.windows.net/","queue":"https://iothubtestrentu-secondary.queue.core.windows.net/","table":"https://iothubtestrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrokhande","name":"iothubtestrokhande","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T02:32:15.1855822Z","primaryEndpoints":{"blob":"https://iothubtestrokhande.blob.core.windows.net/","queue":"https://iothubtestrokhande.queue.core.windows.net/","table":"https://iothubtestrokhande.table.core.windows.net/","file":"https://iothubtestrokhande.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrokhande-secondary.blob.core.windows.net/","queue":"https://iothubtestrokhande-secondary.queue.core.windows.net/","table":"https://iothubtestrokhande-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsachinc","name":"iothubtestsachinc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T20:57:22.1666634Z","primaryEndpoints":{"blob":"https://iothubtestsachinc.blob.core.windows.net/","queue":"https://iothubtestsachinc.queue.core.windows.net/","table":"https://iothubtestsachinc.table.core.windows.net/","file":"https://iothubtestsachinc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsachinc-secondary.blob.core.windows.net/","queue":"https://iothubtestsachinc-secondary.queue.core.windows.net/","table":"https://iothubtestsachinc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsaganeri","name":"iothubtestsaganeri","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T00:08:11.2278020Z","primaryEndpoints":{"blob":"https://iothubtestsaganeri.blob.core.windows.net/","queue":"https://iothubtestsaganeri.queue.core.windows.net/","table":"https://iothubtestsaganeri.table.core.windows.net/","file":"https://iothubtestsaganeri.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsaganeri-secondary.blob.core.windows.net/","queue":"https://iothubtestsaganeri-secondary.queue.core.windows.net/","table":"https://iothubtestsaganeri-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsalall","name":"iothubtestsalall","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-08T21:34:10.1717362Z","primaryEndpoints":{"blob":"https://iothubtestsalall.blob.core.windows.net/","queue":"https://iothubtestsalall.queue.core.windows.net/","table":"https://iothubtestsalall.table.core.windows.net/","file":"https://iothubtestsalall.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsalall-secondary.blob.core.windows.net/","queue":"https://iothubtestsalall-secondary.queue.core.windows.net/","table":"https://iothubtestsalall-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsamguo","name":"iothubtestsamguo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:02:49.8084201Z","primaryEndpoints":{"blob":"https://iothubtestsamguo.blob.core.windows.net/","queue":"https://iothubtestsamguo.queue.core.windows.net/","table":"https://iothubtestsamguo.table.core.windows.net/","file":"https://iothubtestsamguo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsamguo-secondary.blob.core.windows.net/","queue":"https://iothubtestsamguo-secondary.queue.core.windows.net/","table":"https://iothubtestsamguo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsansun","name":"iothubtestsansun","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T22:00:11.9669713Z","primaryEndpoints":{"blob":"https://iothubtestsansun.blob.core.windows.net/","queue":"https://iothubtestsansun.queue.core.windows.net/","table":"https://iothubtestsansun.table.core.windows.net/","file":"https://iothubtestsansun.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsansun-secondary.blob.core.windows.net/","queue":"https://iothubtestsansun-secondary.queue.core.windows.net/","table":"https://iothubtestsansun-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestshishu","name":"iothubtestshishu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T02:08:28.2187591Z","primaryEndpoints":{"blob":"https://iothubtestshishu.blob.core.windows.net/","queue":"https://iothubtestshishu.queue.core.windows.net/","table":"https://iothubtestshishu.table.core.windows.net/","file":"https://iothubtestshishu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestshishu-secondary.blob.core.windows.net/","queue":"https://iothubtestshishu-secondary.queue.core.windows.net/","table":"https://iothubtestshishu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestskintali","name":"iothubtestskintali","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:54:13.6485612Z","primaryEndpoints":{"blob":"https://iothubtestskintali.blob.core.windows.net/","queue":"https://iothubtestskintali.queue.core.windows.net/","table":"https://iothubtestskintali.table.core.windows.net/","file":"https://iothubtestskintali.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestskintali-secondary.blob.core.windows.net/","queue":"https://iothubtestskintali-secondary.queue.core.windows.net/","table":"https://iothubtestskintali-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestspradhan","name":"iothubtestspradhan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T03:14:36.7417452Z","primaryEndpoints":{"blob":"https://iothubtestspradhan.blob.core.windows.net/","queue":"https://iothubtestspradhan.queue.core.windows.net/","table":"https://iothubtestspradhan.table.core.windows.net/","file":"https://iothubtestspradhan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestspradhan-secondary.blob.core.windows.net/","queue":"https://iothubtestspradhan-secondary.queue.core.windows.net/","table":"https://iothubtestspradhan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestswkrovvi","name":"iothubtestswkrovvi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-21T22:29:05.5365174Z","primaryEndpoints":{"blob":"https://iothubtestswkrovvi.blob.core.windows.net/","queue":"https://iothubtestswkrovvi.queue.core.windows.net/","table":"https://iothubtestswkrovvi.table.core.windows.net/","file":"https://iothubtestswkrovvi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestswkrovvi-secondary.blob.core.windows.net/","queue":"https://iothubtestswkrovvi-secondary.queue.core.windows.net/","table":"https://iothubtestswkrovvi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttadesseb","name":"iothubtesttadesseb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-13T17:12:33.4184293Z","primaryEndpoints":{"blob":"https://iothubtesttadesseb.blob.core.windows.net/","queue":"https://iothubtesttadesseb.queue.core.windows.net/","table":"https://iothubtesttadesseb.table.core.windows.net/","file":"https://iothubtesttadesseb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttadesseb-secondary.blob.core.windows.net/","queue":"https://iothubtesttadesseb-secondary.queue.core.windows.net/","table":"https://iothubtesttadesseb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttestarm5","name":"iothubtesttestarm5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T21:30:06.3944118Z","primaryEndpoints":{"blob":"https://iothubtesttestarm5.blob.core.windows.net/","queue":"https://iothubtesttestarm5.queue.core.windows.net/","table":"https://iothubtesttestarm5.table.core.windows.net/","file":"https://iothubtesttestarm5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttestarm5-secondary.blob.core.windows.net/","queue":"https://iothubtesttestarm5-secondary.queue.core.windows.net/","table":"https://iothubtesttestarm5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestvishalg","name":"iothubtestvishalg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-03T23:08:30.0223446Z","primaryEndpoints":{"blob":"https://iothubtestvishalg.blob.core.windows.net/","queue":"https://iothubtestvishalg.queue.core.windows.net/","table":"https://iothubtestvishalg.table.core.windows.net/","file":"https://iothubtestvishalg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestvishalg-secondary.blob.core.windows.net/","queue":"https://iothubtestvishalg-secondary.queue.core.windows.net/","table":"https://iothubtestvishalg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzadixon","name":"iothubtestzadixon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T19:01:04.0109651Z","primaryEndpoints":{"blob":"https://iothubtestzadixon.blob.core.windows.net/","queue":"https://iothubtestzadixon.queue.core.windows.net/","table":"https://iothubtestzadixon.table.core.windows.net/","file":"https://iothubtestzadixon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzadixon-secondary.blob.core.windows.net/","queue":"https://iothubtestzadixon-secondary.queue.core.windows.net/","table":"https://iothubtestzadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen10","name":"iothubtestzagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:25:38.6905986Z","primaryEndpoints":{"blob":"https://iothubtestzagen10.blob.core.windows.net/","queue":"https://iothubtestzagen10.queue.core.windows.net/","table":"https://iothubtestzagen10.table.core.windows.net/","file":"https://iothubtestzagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen10-secondary.queue.core.windows.net/","table":"https://iothubtestzagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen12","name":"iothubtestzagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:57:42.4098682Z","primaryEndpoints":{"blob":"https://iothubtestzagen12.blob.core.windows.net/","queue":"https://iothubtestzagen12.queue.core.windows.net/","table":"https://iothubtestzagen12.table.core.windows.net/","file":"https://iothubtestzagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen12-secondary.queue.core.windows.net/","table":"https://iothubtestzagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen13","name":"iothubtestzagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:55:47.9972019Z","primaryEndpoints":{"blob":"https://iothubtestzagen13.blob.core.windows.net/","queue":"https://iothubtestzagen13.queue.core.windows.net/","table":"https://iothubtestzagen13.table.core.windows.net/","file":"https://iothubtestzagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen13-secondary.queue.core.windows.net/","table":"https://iothubtestzagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen14","name":"iothubtestzagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T09:13:59.2559614Z","primaryEndpoints":{"blob":"https://iothubtestzagen14.blob.core.windows.net/","queue":"https://iothubtestzagen14.queue.core.windows.net/","table":"https://iothubtestzagen14.table.core.windows.net/","file":"https://iothubtestzagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen14-secondary.queue.core.windows.net/","table":"https://iothubtestzagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen15","name":"iothubtestzagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T07:43:56.5112954Z","primaryEndpoints":{"blob":"https://iothubtestzagen15.blob.core.windows.net/","queue":"https://iothubtestzagen15.queue.core.windows.net/","table":"https://iothubtestzagen15.table.core.windows.net/","file":"https://iothubtestzagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen15-secondary.queue.core.windows.net/","table":"https://iothubtestzagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent5","name":"iothubtestzagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T22:41:21.2471564Z","primaryEndpoints":{"blob":"https://iothubtestzagent5.blob.core.windows.net/","queue":"https://iothubtestzagent5.queue.core.windows.net/","table":"https://iothubtestzagent5.table.core.windows.net/","file":"https://iothubtestzagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent5-secondary.queue.core.windows.net/","table":"https://iothubtestzagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent6","name":"iothubtestzagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:23:38.0340787Z","primaryEndpoints":{"blob":"https://iothubtestzagent6.blob.core.windows.net/","queue":"https://iothubtestzagent6.queue.core.windows.net/","table":"https://iothubtestzagent6.table.core.windows.net/","file":"https://iothubtestzagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent6-secondary.queue.core.windows.net/","table":"https://iothubtestzagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent7","name":"iothubtestzagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T19:01:03.0291717Z","primaryEndpoints":{"blob":"https://iothubtestzagent7.blob.core.windows.net/","queue":"https://iothubtestzagent7.queue.core.windows.net/","table":"https://iothubtestzagent7.table.core.windows.net/","file":"https://iothubtestzagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent7-secondary.queue.core.windows.net/","table":"https://iothubtestzagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent8","name":"iothubtestzagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T20:34:35.3897729Z","primaryEndpoints":{"blob":"https://iothubtestzagent8.blob.core.windows.net/","queue":"https://iothubtestzagent8.queue.core.windows.net/","table":"https://iothubtestzagent8.table.core.windows.net/","file":"https://iothubtestzagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent8-secondary.queue.core.windows.net/","table":"https://iothubtestzagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzhangyih","name":"iothubtestzhangyih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T01:43:54.5986244Z","primaryEndpoints":{"blob":"https://iothubtestzhangyih.blob.core.windows.net/","queue":"https://iothubtestzhangyih.queue.core.windows.net/","table":"https://iothubtestzhangyih.table.core.windows.net/","file":"https://iothubtestzhangyih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzhangyih-secondary.blob.core.windows.net/","queue":"https://iothubtestzhangyih-secondary.queue.core.windows.net/","table":"https://iothubtestzhangyih-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzheg","name":"iothubtestzheg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T06:16:21.8173801Z","primaryEndpoints":{"blob":"https://iothubtestzheg.blob.core.windows.net/","queue":"https://iothubtestzheg.queue.core.windows.net/","table":"https://iothubtestzheg.table.core.windows.net/","file":"https://iothubtestzheg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzheg-secondary.blob.core.windows.net/","queue":"https://iothubtestzheg-secondary.queue.core.windows.net/","table":"https://iothubtestzheg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service - Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service - Fabric","clusterName":"sfmonitoring"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/c_westus/providers/Microsoft.Storage/storageAccounts/simmvp3ovk0c6molt3c7178","name":"simmvp3ovk0c6molt3c7178","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T01:14:27.5133334Z","primaryEndpoints":{"blob":"https://simmvp3ovk0c6molt3c7178.blob.core.windows.net/","queue":"https://simmvp3ovk0c6molt3c7178.queue.core.windows.net/","table":"https://simmvp3ovk0c6molt3c7178.table.core.windows.net/","file":"https://simmvp3ovk0c6molt3c7178.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag215","name":"skintalitestdiag215","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T17:06:36.6308986Z","primaryEndpoints":{"blob":"https://skintalitestdiag215.blob.core.windows.net/","queue":"https://skintalitestdiag215.queue.core.windows.net/","table":"https://skintalitestdiag215.table.core.windows.net/","file":"https://skintalitestdiag215.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag","name":"mgtlabdiag","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T01:59:01.5975155Z","primaryEndpoints":{"blob":"https://mgtlabdiag.blob.core.windows.net/","queue":"https://mgtlabdiag.queue.core.windows.net/","table":"https://mgtlabdiag.table.core.windows.net/","file":"https://mgtlabdiag.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"dfs":"https://cs791d126603decx467axbe2.dfs.core.windows.net/","web":"https://cs791d126603decx467axbe2.z21.web.core.windows.net/","blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fips-finagle-investigate/providers/Microsoft.Storage/storageAccounts/fips0finagle0investigate","name":"fips0finagle0investigate","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-02-27T00:52:30.3775048Z","primaryEndpoints":{"dfs":"https://fips0finagle0investigate.dfs.core.windows.net/","web":"https://fips0finagle0investigate.z21.web.core.windows.net/","blob":"https://fips0finagle0investigate.blob.core.windows.net/","queue":"https://fips0finagle0investigate.queue.core.windows.net/","table":"https://fips0finagle0investigate.table.core.windows.net/","file":"https://fips0finagle0investigate.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttest2ac","name":"routingrunsttest2ac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-25T01:55:14.5711807Z","primaryEndpoints":{"dfs":"https://routingrunsttest2ac.dfs.core.windows.net/","blob":"https://routingrunsttest2ac.blob.core.windows.net/","table":"https://routingrunsttest2ac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"dfs":"https://routingrunsttestac.dfs.core.windows.net/","blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T18:54:05.0784961Z","primaryEndpoints":{"dfs":"https://shishustoragenormal.dfs.core.windows.net/","web":"https://shishustoragenormal.z21.web.core.windows.net/","blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishustoragenormal-secondary.dfs.core.windows.net/","web":"https://shishustoragenormal-secondary.z21.web.core.windows.net/","blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/storageconsttestac","name":"storageconsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T23:36:34.6272473Z","primaryEndpoints":{"dfs":"https://storageconsttestac.dfs.core.windows.net/","blob":"https://storageconsttestac.blob.core.windows.net/","table":"https://storageconsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbuctestsa","name":"andbuctestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T06:23:59.6135355Z","primaryEndpoints":{"dfs":"https://andbuctestsa.dfs.core.windows.net/","web":"https://andbuctestsa.z19.web.core.windows.net/","blob":"https://andbuctestsa.blob.core.windows.net/","queue":"https://andbuctestsa.queue.core.windows.net/","table":"https://andbuctestsa.table.core.windows.net/","file":"https://andbuctestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbuctestsa-secondary.dfs.core.windows.net/","web":"https://andbuctestsa-secondary.z19.web.core.windows.net/","blob":"https://andbuctestsa-secondary.blob.core.windows.net/","queue":"https://andbuctestsa-secondary.queue.core.windows.net/","table":"https://andbuctestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurpoc-rg/providers/Microsoft.Storage/storageAccounts/ankurpoc","name":"ankurpoc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T14:03:58.5309983Z","primaryEndpoints":{"dfs":"https://ankurpoc.dfs.core.windows.net/","web":"https://ankurpoc.z19.web.core.windows.net/","blob":"https://ankurpoc.blob.core.windows.net/","queue":"https://ankurpoc.queue.core.windows.net/","table":"https://ankurpoc.table.core.windows.net/","file":"https://ankurpoc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ankurpoc-secondary.dfs.core.windows.net/","web":"https://ankurpoc-secondary.z19.web.core.windows.net/","blob":"https://ankurpoc-secondary.blob.core.windows.net/","queue":"https://ankurpoc-secondary.queue.core.windows.net/","table":"https://ankurpoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/dtnotificationbugbash","name":"dtnotificationbugbash","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-24T23:06:57.7437857Z","primaryEndpoints":{"dfs":"https://dtnotificationbugbash.dfs.core.windows.net/","web":"https://dtnotificationbugbash.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash.blob.core.windows.net/","queue":"https://dtnotificationbugbash.queue.core.windows.net/","table":"https://dtnotificationbugbash.table.core.windows.net/","file":"https://dtnotificationbugbash.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://dtnotificationbugbash-secondary.dfs.core.windows.net/","web":"https://dtnotificationbugbash-secondary.z19.web.core.windows.net/","blob":"https://dtnotificationbugbash-secondary.blob.core.windows.net/","queue":"https://dtnotificationbugbash-secondary.queue.core.windows.net/","table":"https://dtnotificationbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/jichangrgdiag","name":"jichangrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-01T23:47:57.7921155Z","primaryEndpoints":{"blob":"https://jichangrgdiag.blob.core.windows.net/","queue":"https://jichangrgdiag.queue.core.windows.net/","table":"https://jichangrgdiag.table.core.windows.net/","file":"https://jichangrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/storageaccountaskhu9745","name":"storageaccountaskhu9745","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-16T01:13:12.1748216Z","primaryEndpoints":{"blob":"https://storageaccountaskhu9745.blob.core.windows.net/","queue":"https://storageaccountaskhu9745.queue.core.windows.net/","table":"https://storageaccountaskhu9745.table.core.windows.net/","file":"https://storageaccountaskhu9745.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag788","name":"magargdiag788","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-23T04:25:34.0062642Z","primaryEndpoints":{"blob":"https://magargdiag788.blob.core.windows.net/","queue":"https://magargdiag788.queue.core.windows.net/","table":"https://magargdiag788.table.core.windows.net/","file":"https://magargdiag788.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag","name":"magargdiag","type":"Microsoft.Storage/storageAccounts","location":"westindia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-13T22:06:53.9752332Z","primaryEndpoints":{"blob":"https://magargdiag.blob.core.windows.net/","queue":"https://magargdiag.queue.core.windows.net/","table":"https://magargdiag.table.core.windows.net/","file":"https://magargdiag.file.core.windows.net/"},"primaryLocation":"westindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbucteststorage","name":"andbucteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-20T22:17:30.2844387Z","primaryEndpoints":{"dfs":"https://andbucteststorage.dfs.core.windows.net/","web":"https://andbucteststorage.z5.web.core.windows.net/","blob":"https://andbucteststorage.blob.core.windows.net/","queue":"https://andbucteststorage.queue.core.windows.net/","table":"https://andbucteststorage.table.core.windows.net/","file":"https://andbucteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://andbucteststorage-secondary.dfs.core.windows.net/","web":"https://andbucteststorage-secondary.z5.web.core.windows.net/","blob":"https://andbucteststorage-secondary.blob.core.windows.net/","queue":"https://andbucteststorage-secondary.queue.core.windows.net/","table":"https://andbucteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"dfs":"https://johnlangstorage.dfs.core.windows.net/","web":"https://johnlangstorage.z5.web.core.windows.net/","blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://johnlangstorage-secondary.dfs.core.windows.net/","web":"https://johnlangstorage-secondary.z5.web.core.windows.net/","blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-site/providers/Microsoft.Storage/storageAccounts/rajstaticsite","name":"rajstaticsite","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T14:49:40.2589627Z","primaryEndpoints":{"dfs":"https://rajstaticsite.dfs.core.windows.net/","web":"https://rajstaticsite.z5.web.core.windows.net/","blob":"https://rajstaticsite.blob.core.windows.net/","queue":"https://rajstaticsite.queue.core.windows.net/","table":"https://rajstaticsite.table.core.windows.net/","file":"https://rajstaticsite.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag","name":"skintalitestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T00:38:53.3700818Z","primaryEndpoints":{"blob":"https://skintalitestdiag.blob.core.windows.net/","queue":"https://skintalitestdiag.queue.core.windows.net/","table":"https://skintalitestdiag.table.core.windows.net/","file":"https://skintalitestdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"dfs":"https://muguntest.dfs.core.windows.net/","web":"https://muguntest.z4.web.core.windows.net/","blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"dfs":"https://shishudesktopc5k9obr.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://shishudesktopc5k9obr-secondary.dfs.core.windows.net/","web":"https://shishudesktopc5k9obr-secondary.z28.web.core.windows.net/","blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"dfs":"https://magaopsmontest.dfs.core.windows.net/","web":"https://magaopsmontest.z3.web.core.windows.net/","blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://magaopsmontest-secondary.dfs.core.windows.net/","web":"https://magaopsmontest-secondary.z3.web.core.windows.net/","blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mchaiaz/providers/Microsoft.Storage/storageAccounts/mchaizrs","name":"mchaizrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-18T23:29:18.2105166Z","primaryEndpoints":{"dfs":"https://mchaizrs.dfs.core.windows.net/","web":"https://mchaizrs.z3.web.core.windows.net/","blob":"https://mchaizrs.blob.core.windows.net/","queue":"https://mchaizrs.queue.core.windows.net/","table":"https://mchaizrs.table.core.windows.net/","file":"https://mchaizrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/aprilpnpbugbash","name":"aprilpnpbugbash","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-22T01:56:00.6235185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T01:56:00.5610388Z","primaryEndpoints":{"blob":"https://aprilpnpbugbash.blob.core.windows.net/","queue":"https://aprilpnpbugbash.queue.core.windows.net/","table":"https://aprilpnpbugbash.table.core.windows.net/","file":"https://aprilpnpbugbash.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aprilpnpbugbash-secondary.blob.core.windows.net/","queue":"https://aprilpnpbugbash-secondary.queue.core.windows.net/","table":"https://aprilpnpbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs291d126603decx467axbe2","name":"cs291d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T04:15:44.0833822Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T04:15:44.0208590Z","primaryEndpoints":{"blob":"https://cs291d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs291d126603decx467axbe2.queue.core.windows.net/","table":"https://cs291d126603decx467axbe2.table.core.windows.net/","file":"https://cs291d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Storage/storageAccounts/csharpiotuapeastus01","name":"csharpiotuapeastus01","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T21:49:04.1760888Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T21:49:04.0979858Z","primaryEndpoints":{"blob":"https://csharpiotuapeastus01.blob.core.windows.net/","queue":"https://csharpiotuapeastus01.queue.core.windows.net/","table":"https://csharpiotuapeastus01.table.core.windows.net/","file":"https://csharpiotuapeastus01.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermeventblobstorage","name":"dextermeventblobstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T20:39:07.5406527Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T20:39:07.4625076Z","primaryEndpoints":{"blob":"https://dextermeventblobstorage.blob.core.windows.net/","queue":"https://dextermeventblobstorage.queue.core.windows.net/","table":"https://dextermeventblobstorage.table.core.windows.net/","file":"https://dextermeventblobstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag172","name":"mgtlabdiag172","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-09T00:56:53.4937481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T00:56:53.3999654Z","primaryEndpoints":{"blob":"https://mgtlabdiag172.blob.core.windows.net/","queue":"https://mgtlabdiag172.queue.core.windows.net/","table":"https://mgtlabdiag172.table.core.windows.net/","file":"https://mgtlabdiag172.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Storage/storageAccounts/sapanstorage1","name":"sapanstorage1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:40:24.2754172Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:40:24.0410428Z","primaryEndpoints":{"blob":"https://sapanstorage1.blob.core.windows.net/","queue":"https://sapanstorage1.queue.core.windows.net/","table":"https://sapanstorage1.table.core.windows.net/","file":"https://sapanstorage1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Storage/storageAccounts/sqlimagestore","name":"sqlimagestore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-21T15:29:06.1136253Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T15:29:06.0354793Z","primaryEndpoints":{"blob":"https://sqlimagestore.blob.core.windows.net/","queue":"https://sqlimagestore.queue.core.windows.net/","table":"https://sqlimagestore.table.core.windows.net/","file":"https://sqlimagestore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sqlimagestore-secondary.blob.core.windows.net/","queue":"https://sqlimagestore-secondary.queue.core.windows.net/","table":"https://sqlimagestore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/zadixon","name":"zadixon","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-06T00:29:47.9926951Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-06T00:29:47.9301744Z","primaryEndpoints":{"blob":"https://zadixon.blob.core.windows.net/","queue":"https://zadixon.queue.core.windows.net/","table":"https://zadixon.table.core.windows.net/","file":"https://zadixon.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zadixon-secondary.blob.core.windows.net/","queue":"https://zadixon-secondary.queue.core.windows.net/","table":"https://zadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avich-rg/providers/Microsoft.Storage/storageAccounts/avichlogs","name":"avichlogs","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-25T20:21:49.1142393Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-25T20:21:49.0517399Z","primaryEndpoints":{"blob":"https://avichlogs.blob.core.windows.net/","queue":"https://avichlogs.queue.core.windows.net/","table":"https://avichlogs.table.core.windows.net/","file":"https://avichlogs.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://avichlogs-secondary.blob.core.windows.net/","queue":"https://avichlogs-secondary.queue.core.windows.net/","table":"https://avichlogs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Storage/storageAccounts/6fgew1jp9423","name":"6fgew1jp9423","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T07:19:44.5740307Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T07:19:44.4647094Z","primaryEndpoints":{"blob":"https://6fgew1jp9423.blob.core.windows.net/","queue":"https://6fgew1jp9423.queue.core.windows.net/","table":"https://6fgew1jp9423.table.core.windows.net/","file":"https://6fgew1jp9423.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://6fgew1jp9423-secondary.blob.core.windows.net/","queue":"https://6fgew1jp9423-secondary.queue.core.windows.net/","table":"https://6fgew1jp9423-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcRG982788/providers/Microsoft.Storage/storageAccounts/aaffanbc6554","name":"aaffanbc6554","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"97cf9e0f-2712-473e-adf5-e72e10b85a9b"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-17T17:30:14.4798994Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-17T17:30:14.4486860Z","primaryEndpoints":{"blob":"https://aaffanbc6554.blob.core.windows.net/","queue":"https://aaffanbc6554.queue.core.windows.net/","table":"https://aaffanbc6554.table.core.windows.net/","file":"https://aaffanbc6554.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affanbcrg982788/providers/Microsoft.Storage/storageAccounts/affanbc8902","name":"affanbc8902","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-30T19:24:20.3126257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-30T19:24:20.1876978Z","primaryEndpoints":{"blob":"https://affanbc8902.blob.core.windows.net/","queue":"https://affanbc8902.queue.core.windows.net/","table":"https://affanbc8902.table.core.windows.net/","file":"https://affanbc8902.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ailniothubcit","name":"ailniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T23:17:22.9988459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T23:17:22.5093915Z","primaryEndpoints":{"blob":"https://ailniothubcit.blob.core.windows.net/","queue":"https://ailniothubcit.queue.core.windows.net/","table":"https://ailniothubcit.table.core.windows.net/","file":"https://ailniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/alkliniothubcit","name":"alkliniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T18:06:23.2221936Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T18:06:22.9170339Z","primaryEndpoints":{"blob":"https://alkliniothubcit.blob.core.windows.net/","queue":"https://alkliniothubcit.queue.core.windows.net/","table":"https://alkliniothubcit.table.core.windows.net/","file":"https://alkliniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ancaniothubcit","name":"ancaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-27T22:27:54.7603041Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-27T22:27:53.9033958Z","primaryEndpoints":{"blob":"https://ancaniothubcit.blob.core.windows.net/","queue":"https://ancaniothubcit.queue.core.windows.net/","table":"https://ancaniothubcit.table.core.windows.net/","file":"https://ancaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/ankurkuliothubcit","name":"ankurkuliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:44:44.4666139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:44:43.9461471Z","primaryEndpoints":{"blob":"https://ankurkuliothubcit.blob.core.windows.net/","queue":"https://ankurkuliothubcit.queue.core.windows.net/","table":"https://ankurkuliothubcit.table.core.windows.net/","file":"https://ankurkuliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/anwaysiothubcit","name":"anwaysiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:54:18.1936151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:54:17.1768220Z","primaryEndpoints":{"blob":"https://anwaysiothubcit.blob.core.windows.net/","queue":"https://anwaysiothubcit.queue.core.windows.net/","table":"https://anwaysiothubcit.table.core.windows.net/","file":"https://anwaysiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/arunksiothubcit","name":"arunksiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:59:57.9414179Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:59:56.6911539Z","primaryEndpoints":{"blob":"https://arunksiothubcit.blob.core.windows.net/","queue":"https://arunksiothubcit.queue.core.windows.net/","table":"https://arunksiothubcit.table.core.windows.net/","file":"https://arunksiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/avichiothubcit","name":"avichiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-17T22:27:30.6321464Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-17T22:27:29.8600084Z","primaryEndpoints":{"blob":"https://avichiothubcit.blob.core.windows.net/","queue":"https://avichiothubcit.queue.core.windows.net/","table":"https://avichiothubcit.table.core.windows.net/","file":"https://avichiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabiothubcit","name":"aziotlabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T23:09:57.5917487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T23:09:56.9590860Z","primaryEndpoints":{"blob":"https://aziotlabiothubcit.blob.core.windows.net/","queue":"https://aziotlabiothubcit.queue.core.windows.net/","table":"https://aziotlabiothubcit.table.core.windows.net/","file":"https://aziotlabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabmasiothubcit","name":"aziotlabmasiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-01T21:09:11.0443067Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-01T21:09:10.6860941Z","primaryEndpoints":{"blob":"https://aziotlabmasiothubcit.blob.core.windows.net/","queue":"https://aziotlabmasiothubcit.queue.core.windows.net/","table":"https://aziotlabmasiothubcit.table.core.windows.net/","file":"https://aziotlabmasiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabpreiothubcit","name":"aziotlabpreiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-02T19:40:34.3966346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-02T19:40:34.2872531Z","primaryEndpoints":{"blob":"https://aziotlabpreiothubcit.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit.queue.core.windows.net/","table":"https://aziotlabpreiothubcit.table.core.windows.net/","file":"https://aziotlabpreiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://aziotlabpreiothubcit-secondary.blob.core.windows.net/","queue":"https://aziotlabpreiothubcit-secondary.queue.core.windows.net/","table":"https://aziotlabpreiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/aziotlabvstsiothubcit","name":"aziotlabvstsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-29T20:56:04.2784597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-29T20:56:03.6961273Z","primaryEndpoints":{"blob":"https://aziotlabvstsiothubcit.blob.core.windows.net/","queue":"https://aziotlabvstsiothubcit.queue.core.windows.net/","table":"https://aziotlabvstsiothubcit.table.core.windows.net/","file":"https://aziotlabvstsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctions69a8a94e","name":"azurefunctions69a8a94e","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1200096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T02:05:50.6456667Z","primaryEndpoints":{"blob":"https://azurefunctions69a8a94e.blob.core.windows.net/","queue":"https://azurefunctions69a8a94e.queue.core.windows.net/","table":"https://azurefunctions69a8a94e.table.core.windows.net/","file":"https://azurefunctions69a8a94e.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-06-16T21:31:17.9739582Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-06-16T21:31:17.9739582Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-16T21:31:17.8177388Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-donotdelete-rg/providers/Microsoft.Storage/storageAccounts/clitestdonotdeletergdiag","name":"clitestdonotdeletergdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T22:37:52.6544324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-30T22:37:52.5606729Z","primaryEndpoints":{"blob":"https://clitestdonotdeletergdiag.blob.core.windows.net/","queue":"https://clitestdonotdeletergdiag.queue.core.windows.net/","table":"https://clitestdonotdeletergdiag.table.core.windows.net/","file":"https://clitestdonotdeletergdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000801b6df4","name":"cs410030000801b6df4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-15T19:06:51.3863025Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-15T19:06:51.2300069Z","primaryEndpoints":{"blob":"https://cs410030000801b6df4.blob.core.windows.net/","queue":"https://cs410030000801b6df4.queue.core.windows.net/","table":"https://cs410030000801b6df4.table.core.windows.net/","file":"https://cs410030000801b6df4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs491d126603decx467axbe2","name":"cs491d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T22:21:19.6272389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-15T22:21:19.5642216Z","primaryEndpoints":{"blob":"https://cs491d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs491d126603decx467axbe2.queue.core.windows.net/","table":"https://cs491d126603decx467axbe2.table.core.windows.net/","file":"https://cs491d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cswestus1003bffda5eca634","name":"cswestus1003bffda5eca634","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-03T01:37:40.5937400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T01:37:40.4375181Z","primaryEndpoints":{"blob":"https://cswestus1003bffda5eca634.blob.core.windows.net/","queue":"https://cswestus1003bffda5eca634.queue.core.windows.net/","table":"https://cswestus1003bffda5eca634.table.core.windows.net/","file":"https://cswestus1003bffda5eca634.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/demuniapiothubcit","name":"demuniapiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-15T00:46:52.3844749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-15T00:46:51.6777018Z","primaryEndpoints":{"blob":"https://demuniapiothubcit.blob.core.windows.net/","queue":"https://demuniapiothubcit.queue.core.windows.net/","table":"https://demuniapiothubcit.table.core.windows.net/","file":"https://demuniapiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Storage/storageAccounts/dextermiotdefaultevent","name":"dextermiotdefaultevent","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T21:17:28.6408090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T21:17:28.5783603Z","primaryEndpoints":{"blob":"https://dextermiotdefaultevent.blob.core.windows.net/","queue":"https://dextermiotdefaultevent.queue.core.windows.net/","table":"https://dextermiotdefaultevent.table.core.windows.net/","file":"https://dextermiotdefaultevent.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dextermiotdefaultevent-secondary.blob.core.windows.net/","queue":"https://dextermiotdefaultevent-secondary.queue.core.windows.net/","table":"https://dextermiotdefaultevent-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestrpbay","name":"dhubmdsaudittestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:26.8505449Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:58.2821620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:42.1505177Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay.table.core.windows.net/","file":"https://dhubmdsaudittestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsaudittestsubay","name":"dhubmdsaudittestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.1665949Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.0922290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:53:53.9876657Z","primaryEndpoints":{"blob":"https://dhubmdsaudittestsubay.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay.table.core.windows.net/","file":"https://dhubmdsaudittestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsaudittestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsaudittestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsaudittestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestrpbay","name":"dhubmdssecuritytestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.5185940Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5572663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:30.7581739Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay.table.core.windows.net/","file":"https://dhubmdssecuritytestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdssecuritytestsubay","name":"dhubmdssecuritytestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:27.8276157Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:32:59.5892978Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-10-25T09:54:43.8431553Z","primaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay.table.core.windows.net/","file":"https://dhubmdssecuritytestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdssecuritytestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdssecuritytestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdssecuritytestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdsshoeboxtestsubay","name":"dhubmdsshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.5906713Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.0803112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-04T19:37:25.3657169Z","primaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay.table.core.windows.net/","file":"https://dhubmdsshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdsshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdsshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdsshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestrpbay","name":"dhubmdstestrpbay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:28.4666611Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:00.4623406Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-02-11T19:47:05.9006362Z","primaryEndpoints":{"blob":"https://dhubmdstestrpbay.blob.core.windows.net/","queue":"https://dhubmdstestrpbay.queue.core.windows.net/","table":"https://dhubmdstestrpbay.table.core.windows.net/","file":"https://dhubmdstestrpbay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestrpbay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestrpbay-secondary.queue.core.windows.net/","table":"https://dhubmdstestrpbay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubmdstestsubay","name":"dhubmdstestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.2250228Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.1523966Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-01-20T07:55:33.5765623Z","primaryEndpoints":{"blob":"https://dhubmdstestsubay.blob.core.windows.net/","queue":"https://dhubmdstestsubay.queue.core.windows.net/","table":"https://dhubmdstestsubay.table.core.windows.net/","file":"https://dhubmdstestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubmdstestsubay-secondary.blob.core.windows.net/","queue":"https://dhubmdstestsubay-secondary.queue.core.windows.net/","table":"https://dhubmdstestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dhubshoeboxtestsubay","name":"dhubshoeboxtestsubay","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-11-07T05:30:29.1080158Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-11-03T12:33:01.5834435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2015-11-23T04:05:26.1928976Z","primaryEndpoints":{"blob":"https://dhubshoeboxtestsubay.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay.table.core.windows.net/","file":"https://dhubshoeboxtestsubay.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dhubshoeboxtestsubay-secondary.blob.core.windows.net/","queue":"https://dhubshoeboxtestsubay-secondary.queue.core.windows.net/","table":"https://dhubshoeboxtestsubay-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dmpypiniothubcit","name":"dmpypiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-08T15:37:10.9472831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-08T15:37:10.6760834Z","primaryEndpoints":{"blob":"https://dmpypiniothubcit.blob.core.windows.net/","queue":"https://dmpypiniothubcit.queue.core.windows.net/","table":"https://dmpypiniothubcit.table.core.windows.net/","file":"https://dmpypiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage","name":"eliostorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:52:59.6433380Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T22:52:59.5027557Z","primaryEndpoints":{"blob":"https://eliostorage.blob.core.windows.net/","queue":"https://eliostorage.queue.core.windows.net/","table":"https://eliostorage.table.core.windows.net/","file":"https://eliostorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/eriwaniothubcit","name":"eriwaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T09:41:06.5709882Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T09:41:06.0356375Z","primaryEndpoints":{"blob":"https://eriwaniothubcit.blob.core.windows.net/","queue":"https://eriwaniothubcit.queue.core.windows.net/","table":"https://eriwaniothubcit.table.core.windows.net/","file":"https://eriwaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evansimiothubcit","name":"evansimiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T16:50:50.7288175Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T16:50:50.2055375Z","primaryEndpoints":{"blob":"https://evansimiothubcit.blob.core.windows.net/","queue":"https://evansimiothubcit.queue.core.windows.net/","table":"https://evansimiothubcit.table.core.windows.net/","file":"https://evansimiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/evsimkowiothubcit","name":"evsimkowiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-22T23:06:51.1414682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-22T23:06:50.9333231Z","primaryEndpoints":{"blob":"https://evsimkowiothubcit.blob.core.windows.net/","queue":"https://evsimkowiothubcit.queue.core.windows.net/","table":"https://evsimkowiothubcit.table.core.windows.net/","file":"https://evsimkowiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc_c_westus_c_westus/providers/Microsoft.Storage/storageAccounts/f9c418a6510b611ea9b85ae","name":"f9c418a6510b611ea9b85ae","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created-by":"azure"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T01:38:31.0250196Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-27T01:38:30.9156217Z","primaryEndpoints":{"blob":"https://f9c418a6510b611ea9b85ae.blob.core.windows.net/","queue":"https://f9c418a6510b611ea9b85ae.queue.core.windows.net/","table":"https://f9c418a6510b611ea9b85ae.table.core.windows.net/","file":"https://f9c418a6510b611ea9b85ae.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/filipstiothubcit","name":"filipstiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T22:04:59.0245227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T22:04:58.9307666Z","primaryEndpoints":{"blob":"https://filipstiothubcit.blob.core.windows.net/","queue":"https://filipstiothubcit.queue.core.windows.net/","table":"https://filipstiothubcit.table.core.windows.net/","file":"https://filipstiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://filipstiothubcit-secondary.blob.core.windows.net/","queue":"https://filipstiothubcit-secondary.queue.core.windows.net/","table":"https://filipstiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/functione1139c249d94","name":"functione1139c249d94","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.1825075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-15T19:42:43.5158311Z","primaryEndpoints":{"blob":"https://functione1139c249d94.blob.core.windows.net/","queue":"https://functione1139c249d94.queue.core.windows.net/","table":"https://functione1139c249d94.table.core.windows.net/","file":"https://functione1139c249d94.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-talks-rg/providers/Microsoft.Storage/storageAccounts/gwv2overview","name":"gwv2overview","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-18T19:45:27.3744485Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-18T19:45:27.2337945Z","primaryEndpoints":{"blob":"https://gwv2overview.blob.core.windows.net/","queue":"https://gwv2overview.queue.core.windows.net/","table":"https://gwv2overview.table.core.windows.net/","file":"https://gwv2overview.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/haavulaiothubcit","name":"haavulaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:53:05.6960481Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:53:05.0951122Z","primaryEndpoints":{"blob":"https://haavulaiothubcit.blob.core.windows.net/","queue":"https://haavulaiothubcit.queue.core.windows.net/","table":"https://haavulaiothubcit.table.core.windows.net/","file":"https://haavulaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestadministrator","name":"iothubtestadministrator","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-04T01:18:18.6805392Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-04T01:18:18.5399619Z","primaryEndpoints":{"blob":"https://iothubtestadministrator.blob.core.windows.net/","queue":"https://iothubtestadministrator.queue.core.windows.net/","table":"https://iothubtestadministrator.table.core.windows.net/","file":"https://iothubtestadministrator.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestadministrator-secondary.blob.core.windows.net/","queue":"https://iothubtestadministrator-secondary.queue.core.windows.net/","table":"https://iothubtestadministrator-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen10","name":"iothubtestagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-22T10:05:13.5496760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T10:05:13.4246717Z","primaryEndpoints":{"blob":"https://iothubtestagen10.blob.core.windows.net/","queue":"https://iothubtestagen10.queue.core.windows.net/","table":"https://iothubtestagen10.table.core.windows.net/","file":"https://iothubtestagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestagen10-secondary.queue.core.windows.net/","table":"https://iothubtestagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen11","name":"iothubtestagen11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T02:23:10.6195984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T02:23:10.5102160Z","primaryEndpoints":{"blob":"https://iothubtestagen11.blob.core.windows.net/","queue":"https://iothubtestagen11.queue.core.windows.net/","table":"https://iothubtestagen11.table.core.windows.net/","file":"https://iothubtestagen11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen11-secondary.blob.core.windows.net/","queue":"https://iothubtestagen11-secondary.queue.core.windows.net/","table":"https://iothubtestagen11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen12","name":"iothubtestagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T07:09:07.1877453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T07:09:07.0627024Z","primaryEndpoints":{"blob":"https://iothubtestagen12.blob.core.windows.net/","queue":"https://iothubtestagen12.queue.core.windows.net/","table":"https://iothubtestagen12.table.core.windows.net/","file":"https://iothubtestagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestagen12-secondary.queue.core.windows.net/","table":"https://iothubtestagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen13","name":"iothubtestagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-15T22:59:15.0318691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T22:59:14.9381300Z","primaryEndpoints":{"blob":"https://iothubtestagen13.blob.core.windows.net/","queue":"https://iothubtestagen13.queue.core.windows.net/","table":"https://iothubtestagen13.table.core.windows.net/","file":"https://iothubtestagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestagen13-secondary.queue.core.windows.net/","table":"https://iothubtestagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen14","name":"iothubtestagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T03:17:58.3770712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T03:17:58.2833024Z","primaryEndpoints":{"blob":"https://iothubtestagen14.blob.core.windows.net/","queue":"https://iothubtestagen14.queue.core.windows.net/","table":"https://iothubtestagen14.table.core.windows.net/","file":"https://iothubtestagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestagen14-secondary.queue.core.windows.net/","table":"https://iothubtestagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagen15","name":"iothubtestagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-23T23:31:45.4014503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-23T23:31:45.2765000Z","primaryEndpoints":{"blob":"https://iothubtestagen15.blob.core.windows.net/","queue":"https://iothubtestagen15.queue.core.windows.net/","table":"https://iothubtestagen15.table.core.windows.net/","file":"https://iothubtestagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestagen15-secondary.queue.core.windows.net/","table":"https://iothubtestagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent3","name":"iothubtestagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T12:35:10.6454026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T12:35:10.5203999Z","primaryEndpoints":{"blob":"https://iothubtestagent3.blob.core.windows.net/","queue":"https://iothubtestagent3.queue.core.windows.net/","table":"https://iothubtestagent3.table.core.windows.net/","file":"https://iothubtestagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestagent3-secondary.queue.core.windows.net/","table":"https://iothubtestagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent4","name":"iothubtestagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T04:17:54.2165163Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:17:54.1226653Z","primaryEndpoints":{"blob":"https://iothubtestagent4.blob.core.windows.net/","queue":"https://iothubtestagent4.queue.core.windows.net/","table":"https://iothubtestagent4.table.core.windows.net/","file":"https://iothubtestagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestagent4-secondary.queue.core.windows.net/","table":"https://iothubtestagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent5","name":"iothubtestagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T18:49:31.4134219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T18:49:31.3039985Z","primaryEndpoints":{"blob":"https://iothubtestagent5.blob.core.windows.net/","queue":"https://iothubtestagent5.queue.core.windows.net/","table":"https://iothubtestagent5.table.core.windows.net/","file":"https://iothubtestagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestagent5-secondary.queue.core.windows.net/","table":"https://iothubtestagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent6","name":"iothubtestagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-15T20:48:18.8065713Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-15T20:48:18.6972003Z","primaryEndpoints":{"blob":"https://iothubtestagent6.blob.core.windows.net/","queue":"https://iothubtestagent6.queue.core.windows.net/","table":"https://iothubtestagent6.table.core.windows.net/","file":"https://iothubtestagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestagent6-secondary.queue.core.windows.net/","table":"https://iothubtestagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent7","name":"iothubtestagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-22T18:13:17.6221840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T18:13:17.5284420Z","primaryEndpoints":{"blob":"https://iothubtestagent7.blob.core.windows.net/","queue":"https://iothubtestagent7.queue.core.windows.net/","table":"https://iothubtestagent7.table.core.windows.net/","file":"https://iothubtestagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestagent7-secondary.queue.core.windows.net/","table":"https://iothubtestagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent8","name":"iothubtestagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-17T05:50:45.1172847Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T05:50:45.0235433Z","primaryEndpoints":{"blob":"https://iothubtestagent8.blob.core.windows.net/","queue":"https://iothubtestagent8.queue.core.windows.net/","table":"https://iothubtestagent8.table.core.windows.net/","file":"https://iothubtestagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestagent8-secondary.queue.core.windows.net/","table":"https://iothubtestagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestagent9","name":"iothubtestagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T12:08:19.2923480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T12:08:19.1985977Z","primaryEndpoints":{"blob":"https://iothubtestagent9.blob.core.windows.net/","queue":"https://iothubtestagent9.queue.core.windows.net/","table":"https://iothubtestagent9.table.core.windows.net/","file":"https://iothubtestagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestagent9-secondary.queue.core.windows.net/","table":"https://iothubtestagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestailn","name":"iothubtestailn","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-05T21:30:26.6734186Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T21:30:26.5327702Z","primaryEndpoints":{"blob":"https://iothubtestailn.blob.core.windows.net/","queue":"https://iothubtestailn.queue.core.windows.net/","table":"https://iothubtestailn.table.core.windows.net/","file":"https://iothubtestailn.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestailn-secondary.blob.core.windows.net/","queue":"https://iothubtestailn-secondary.queue.core.windows.net/","table":"https://iothubtestailn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestalklin","name":"iothubtestalklin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-22T21:44:41.1576102Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T21:44:41.0326156Z","primaryEndpoints":{"blob":"https://iothubtestalklin.blob.core.windows.net/","queue":"https://iothubtestalklin.queue.core.windows.net/","table":"https://iothubtestalklin.table.core.windows.net/","file":"https://iothubtestalklin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestalklin-secondary.blob.core.windows.net/","queue":"https://iothubtestalklin-secondary.queue.core.windows.net/","table":"https://iothubtestalklin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestancan","name":"iothubtestancan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-15T20:53:52.6652275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-15T20:53:52.5245873Z","primaryEndpoints":{"blob":"https://iothubtestancan.blob.core.windows.net/","queue":"https://iothubtestancan.queue.core.windows.net/","table":"https://iothubtestancan.table.core.windows.net/","file":"https://iothubtestancan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestancan-secondary.blob.core.windows.net/","queue":"https://iothubtestancan-secondary.queue.core.windows.net/","table":"https://iothubtestancan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestankurkul","name":"iothubtestankurkul","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T18:55:33.7258829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T18:55:33.5852523Z","primaryEndpoints":{"blob":"https://iothubtestankurkul.blob.core.windows.net/","queue":"https://iothubtestankurkul.queue.core.windows.net/","table":"https://iothubtestankurkul.table.core.windows.net/","file":"https://iothubtestankurkul.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestankurkul-secondary.blob.core.windows.net/","queue":"https://iothubtestankurkul-secondary.queue.core.windows.net/","table":"https://iothubtestankurkul-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestanways","name":"iothubtestanways","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-18T23:37:24.9600768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T23:37:24.8038321Z","primaryEndpoints":{"blob":"https://iothubtestanways.blob.core.windows.net/","queue":"https://iothubtestanways.queue.core.windows.net/","table":"https://iothubtestanways.table.core.windows.net/","file":"https://iothubtestanways.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestanways-secondary.blob.core.windows.net/","queue":"https://iothubtestanways-secondary.queue.core.windows.net/","table":"https://iothubtestanways-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent0","name":"iothubtestarmagent0","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-06T20:25:07.7638229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:25:07.6231752Z","primaryEndpoints":{"blob":"https://iothubtestarmagent0.blob.core.windows.net/","queue":"https://iothubtestarmagent0.queue.core.windows.net/","table":"https://iothubtestarmagent0.table.core.windows.net/","file":"https://iothubtestarmagent0.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent0-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent0-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent0-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent1","name":"iothubtestarmagent1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-06T20:14:06.3225367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:06.1819274Z","primaryEndpoints":{"blob":"https://iothubtestarmagent1.blob.core.windows.net/","queue":"https://iothubtestarmagent1.queue.core.windows.net/","table":"https://iothubtestarmagent1.table.core.windows.net/","file":"https://iothubtestarmagent1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent1-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent1-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent10","name":"iothubtestarmagent10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-04T00:00:33.6577231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-04T00:00:33.5483450Z","primaryEndpoints":{"blob":"https://iothubtestarmagent10.blob.core.windows.net/","queue":"https://iothubtestarmagent10.queue.core.windows.net/","table":"https://iothubtestarmagent10.table.core.windows.net/","file":"https://iothubtestarmagent10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent10-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent10-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent11","name":"iothubtestarmagent11","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T22:30:52.3533782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:30:52.2440378Z","primaryEndpoints":{"blob":"https://iothubtestarmagent11.blob.core.windows.net/","queue":"https://iothubtestarmagent11.queue.core.windows.net/","table":"https://iothubtestarmagent11.table.core.windows.net/","file":"https://iothubtestarmagent11.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent11-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent11-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent12","name":"iothubtestarmagent12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T22:04:32.4994486Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:32.3588053Z","primaryEndpoints":{"blob":"https://iothubtestarmagent12.blob.core.windows.net/","queue":"https://iothubtestarmagent12.queue.core.windows.net/","table":"https://iothubtestarmagent12.table.core.windows.net/","file":"https://iothubtestarmagent12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent12-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent12-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent13","name":"iothubtestarmagent13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T22:04:27.7956563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T22:04:27.6550375Z","primaryEndpoints":{"blob":"https://iothubtestarmagent13.blob.core.windows.net/","queue":"https://iothubtestarmagent13.queue.core.windows.net/","table":"https://iothubtestarmagent13.table.core.windows.net/","file":"https://iothubtestarmagent13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent13-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent13-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent14","name":"iothubtestarmagent14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-29T22:42:37.4968334Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:42:37.3561862Z","primaryEndpoints":{"blob":"https://iothubtestarmagent14.blob.core.windows.net/","queue":"https://iothubtestarmagent14.queue.core.windows.net/","table":"https://iothubtestarmagent14.table.core.windows.net/","file":"https://iothubtestarmagent14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent14-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent14-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent15","name":"iothubtestarmagent15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-29T22:43:42.3234755Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:43:42.1672649Z","primaryEndpoints":{"blob":"https://iothubtestarmagent15.blob.core.windows.net/","queue":"https://iothubtestarmagent15.queue.core.windows.net/","table":"https://iothubtestarmagent15.table.core.windows.net/","file":"https://iothubtestarmagent15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent15-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent15-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent16","name":"iothubtestarmagent16","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-29T22:41:07.1145696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-29T22:41:06.9895448Z","primaryEndpoints":{"blob":"https://iothubtestarmagent16.blob.core.windows.net/","queue":"https://iothubtestarmagent16.queue.core.windows.net/","table":"https://iothubtestarmagent16.table.core.windows.net/","file":"https://iothubtestarmagent16.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent16-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent16-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent2","name":"iothubtestarmagent2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-06T20:14:14.5575199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-06T20:14:14.4324743Z","primaryEndpoints":{"blob":"https://iothubtestarmagent2.blob.core.windows.net/","queue":"https://iothubtestarmagent2.queue.core.windows.net/","table":"https://iothubtestarmagent2.table.core.windows.net/","file":"https://iothubtestarmagent2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent2-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent2-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent3","name":"iothubtestarmagent3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-05T21:05:38.9543191Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:05:38.8293155Z","primaryEndpoints":{"blob":"https://iothubtestarmagent3.blob.core.windows.net/","queue":"https://iothubtestarmagent3.queue.core.windows.net/","table":"https://iothubtestarmagent3.table.core.windows.net/","file":"https://iothubtestarmagent3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent3-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent3-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent4","name":"iothubtestarmagent4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-05T19:43:06.5658780Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T19:43:06.4252573Z","primaryEndpoints":{"blob":"https://iothubtestarmagent4.blob.core.windows.net/","queue":"https://iothubtestarmagent4.queue.core.windows.net/","table":"https://iothubtestarmagent4.table.core.windows.net/","file":"https://iothubtestarmagent4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent4-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent4-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent5","name":"iothubtestarmagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-08T04:07:15.5909577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T04:07:15.4659852Z","primaryEndpoints":{"blob":"https://iothubtestarmagent5.blob.core.windows.net/","queue":"https://iothubtestarmagent5.queue.core.windows.net/","table":"https://iothubtestarmagent5.table.core.windows.net/","file":"https://iothubtestarmagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent5-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent6","name":"iothubtestarmagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-08T23:05:24.3432676Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T23:05:24.2026638Z","primaryEndpoints":{"blob":"https://iothubtestarmagent6.blob.core.windows.net/","queue":"https://iothubtestarmagent6.queue.core.windows.net/","table":"https://iothubtestarmagent6.table.core.windows.net/","file":"https://iothubtestarmagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent6-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent7","name":"iothubtestarmagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-10T04:19:55.1974308Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T04:19:55.0567985Z","primaryEndpoints":{"blob":"https://iothubtestarmagent7.blob.core.windows.net/","queue":"https://iothubtestarmagent7.queue.core.windows.net/","table":"https://iothubtestarmagent7.table.core.windows.net/","file":"https://iothubtestarmagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent7-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent8","name":"iothubtestarmagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-10T17:51:51.3401199Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:51:51.1994925Z","primaryEndpoints":{"blob":"https://iothubtestarmagent8.blob.core.windows.net/","queue":"https://iothubtestarmagent8.queue.core.windows.net/","table":"https://iothubtestarmagent8.table.core.windows.net/","file":"https://iothubtestarmagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent8-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestarmagent9","name":"iothubtestarmagent9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-10T17:46:30.8098108Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-10T17:46:30.6691686Z","primaryEndpoints":{"blob":"https://iothubtestarmagent9.blob.core.windows.net/","queue":"https://iothubtestarmagent9.queue.core.windows.net/","table":"https://iothubtestarmagent9.table.core.windows.net/","file":"https://iothubtestarmagent9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestarmagent9-secondary.blob.core.windows.net/","queue":"https://iothubtestarmagent9-secondary.queue.core.windows.net/","table":"https://iothubtestarmagent9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestartr","name":"iothubtestartr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-14T18:36:15.0440999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T18:36:14.8722411Z","primaryEndpoints":{"blob":"https://iothubtestartr.blob.core.windows.net/","queue":"https://iothubtestartr.queue.core.windows.net/","table":"https://iothubtestartr.table.core.windows.net/","file":"https://iothubtestartr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestartr-secondary.blob.core.windows.net/","queue":"https://iothubtestartr-secondary.queue.core.windows.net/","table":"https://iothubtestartr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavich","name":"iothubtestavich","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T00:34:14.9048357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-04T00:34:14.7642048Z","primaryEndpoints":{"blob":"https://iothubtestavich.blob.core.windows.net/","queue":"https://iothubtestavich.queue.core.windows.net/","table":"https://iothubtestavich.table.core.windows.net/","file":"https://iothubtestavich.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavich-secondary.blob.core.windows.net/","queue":"https://iothubtestavich-secondary.queue.core.windows.net/","table":"https://iothubtestavich-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestavran","name":"iothubtestavran","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-07T07:08:17.7273613Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T07:08:17.6023949Z","primaryEndpoints":{"blob":"https://iothubtestavran.blob.core.windows.net/","queue":"https://iothubtestavran.queue.core.windows.net/","table":"https://iothubtestavran.table.core.windows.net/","file":"https://iothubtestavran.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestavran-secondary.blob.core.windows.net/","queue":"https://iothubtestavran-secondary.queue.core.windows.net/","table":"https://iothubtestavran-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestaziotgit","name":"iothubtestaziotgit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-26T08:20:06.0748438Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-26T08:20:05.9498662Z","primaryEndpoints":{"blob":"https://iothubtestaziotgit.blob.core.windows.net/","queue":"https://iothubtestaziotgit.queue.core.windows.net/","table":"https://iothubtestaziotgit.table.core.windows.net/","file":"https://iothubtestaziotgit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestaziotgit-secondary.blob.core.windows.net/","queue":"https://iothubtestaziotgit-secondary.queue.core.windows.net/","table":"https://iothubtestaziotgit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestchschill","name":"iothubtestchschill","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-21T19:28:33.5339726Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T19:28:33.3933505Z","primaryEndpoints":{"blob":"https://iothubtestchschill.blob.core.windows.net/","queue":"https://iothubtestchschill.queue.core.windows.net/","table":"https://iothubtestchschill.table.core.windows.net/","file":"https://iothubtestchschill.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestchschill-secondary.blob.core.windows.net/","queue":"https://iothubtestchschill-secondary.queue.core.windows.net/","table":"https://iothubtestchschill-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdemuniap","name":"iothubtestdemuniap","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-26T18:05:34.0226850Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T18:05:33.8976512Z","primaryEndpoints":{"blob":"https://iothubtestdemuniap.blob.core.windows.net/","queue":"https://iothubtestdemuniap.queue.core.windows.net/","table":"https://iothubtestdemuniap.table.core.windows.net/","file":"https://iothubtestdemuniap.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdemuniap-secondary.blob.core.windows.net/","queue":"https://iothubtestdemuniap-secondary.queue.core.windows.net/","table":"https://iothubtestdemuniap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestdmpypin","name":"iothubtestdmpypin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T02:06:07.7807422Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T02:06:07.6557833Z","primaryEndpoints":{"blob":"https://iothubtestdmpypin.blob.core.windows.net/","queue":"https://iothubtestdmpypin.queue.core.windows.net/","table":"https://iothubtestdmpypin.table.core.windows.net/","file":"https://iothubtestdmpypin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestdmpypin-secondary.blob.core.windows.net/","queue":"https://iothubtestdmpypin-secondary.queue.core.windows.net/","table":"https://iothubtestdmpypin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesterpogas","name":"iothubtesterpogas","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T00:42:35.8040703Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:42:35.6790670Z","primaryEndpoints":{"blob":"https://iothubtesterpogas.blob.core.windows.net/","queue":"https://iothubtesterpogas.queue.core.windows.net/","table":"https://iothubtesterpogas.table.core.windows.net/","file":"https://iothubtesterpogas.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesterpogas-secondary.blob.core.windows.net/","queue":"https://iothubtesterpogas-secondary.queue.core.windows.net/","table":"https://iothubtesterpogas-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestevansim","name":"iothubtestevansim","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T19:23:28.6031751Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T19:23:28.4781666Z","primaryEndpoints":{"blob":"https://iothubtestevansim.blob.core.windows.net/","queue":"https://iothubtestevansim.queue.core.windows.net/","table":"https://iothubtestevansim.table.core.windows.net/","file":"https://iothubtestevansim.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestevansim-secondary.blob.core.windows.net/","queue":"https://iothubtestevansim-secondary.queue.core.windows.net/","table":"https://iothubtestevansim-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestfilipst","name":"iothubtestfilipst","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-18T18:49:49.0454310Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T18:49:48.9517375Z","primaryEndpoints":{"blob":"https://iothubtestfilipst.blob.core.windows.net/","queue":"https://iothubtestfilipst.queue.core.windows.net/","table":"https://iothubtestfilipst.table.core.windows.net/","file":"https://iothubtestfilipst.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestfilipst-secondary.blob.core.windows.net/","queue":"https://iothubtestfilipst-secondary.queue.core.windows.net/","table":"https://iothubtestfilipst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesthaavula","name":"iothubtesthaavula","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-18T19:46:15.9112296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T19:46:15.8018780Z","primaryEndpoints":{"blob":"https://iothubtesthaavula.blob.core.windows.net/","queue":"https://iothubtesthaavula.queue.core.windows.net/","table":"https://iothubtesthaavula.table.core.windows.net/","file":"https://iothubtesthaavula.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesthaavula-secondary.blob.core.windows.net/","queue":"https://iothubtesthaavula-secondary.queue.core.windows.net/","table":"https://iothubtesthaavula-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestiotadmin","name":"iothubtestiotadmin","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T06:15:38.8974062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T06:15:38.7880310Z","primaryEndpoints":{"blob":"https://iothubtestiotadmin.blob.core.windows.net/","queue":"https://iothubtestiotadmin.queue.core.windows.net/","table":"https://iothubtestiotadmin.table.core.windows.net/","file":"https://iothubtestiotadmin.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestiotadmin-secondary.blob.core.windows.net/","queue":"https://iothubtestiotadmin-secondary.queue.core.windows.net/","table":"https://iothubtestiotadmin-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestisyama","name":"iothubtestisyama","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-18T20:16:57.9729265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-18T20:16:57.8635776Z","primaryEndpoints":{"blob":"https://iothubtestisyama.blob.core.windows.net/","queue":"https://iothubtestisyama.queue.core.windows.net/","table":"https://iothubtestisyama.table.core.windows.net/","file":"https://iothubtestisyama.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestisyama-secondary.blob.core.windows.net/","queue":"https://iothubtestisyama-secondary.queue.core.windows.net/","table":"https://iothubtestisyama-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjacoimba","name":"iothubtestjacoimba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-03T13:35:42.3453057Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-03T13:35:42.2046780Z","primaryEndpoints":{"blob":"https://iothubtestjacoimba.blob.core.windows.net/","queue":"https://iothubtestjacoimba.queue.core.windows.net/","table":"https://iothubtestjacoimba.table.core.windows.net/","file":"https://iothubtestjacoimba.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjacoimba-secondary.blob.core.windows.net/","queue":"https://iothubtestjacoimba-secondary.queue.core.windows.net/","table":"https://iothubtestjacoimba-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjichang","name":"iothubtestjichang","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-14T20:48:51.4103489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T20:48:51.2697659Z","primaryEndpoints":{"blob":"https://iothubtestjichang.blob.core.windows.net/","queue":"https://iothubtestjichang.queue.core.windows.net/","table":"https://iothubtestjichang.table.core.windows.net/","file":"https://iothubtestjichang.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjichang-secondary.blob.core.windows.net/","queue":"https://iothubtestjichang-secondary.queue.core.windows.net/","table":"https://iothubtestjichang-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjitenkos","name":"iothubtestjitenkos","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-21T20:10:24.9903452Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-21T20:10:24.8341568Z","primaryEndpoints":{"blob":"https://iothubtestjitenkos.blob.core.windows.net/","queue":"https://iothubtestjitenkos.queue.core.windows.net/","table":"https://iothubtestjitenkos.table.core.windows.net/","file":"https://iothubtestjitenkos.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjitenkos-secondary.blob.core.windows.net/","queue":"https://iothubtestjitenkos-secondary.queue.core.windows.net/","table":"https://iothubtestjitenkos-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestjucarpio","name":"iothubtestjucarpio","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-20T21:23:53.3491901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-20T21:23:53.2553997Z","primaryEndpoints":{"blob":"https://iothubtestjucarpio.blob.core.windows.net/","queue":"https://iothubtestjucarpio.queue.core.windows.net/","table":"https://iothubtestjucarpio.table.core.windows.net/","file":"https://iothubtestjucarpio.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestjucarpio-secondary.blob.core.windows.net/","queue":"https://iothubtestjucarpio-secondary.queue.core.windows.net/","table":"https://iothubtestjucarpio-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkaagarw","name":"iothubtestkaagarw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-02T22:17:52.8633424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-02T22:17:52.7382855Z","primaryEndpoints":{"blob":"https://iothubtestkaagarw.blob.core.windows.net/","queue":"https://iothubtestkaagarw.queue.core.windows.net/","table":"https://iothubtestkaagarw.table.core.windows.net/","file":"https://iothubtestkaagarw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkaagarw-secondary.blob.core.windows.net/","queue":"https://iothubtestkaagarw-secondary.queue.core.windows.net/","table":"https://iothubtestkaagarw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestkanoda","name":"iothubtestkanoda","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T20:18:58.9349230Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T20:18:58.8099190Z","primaryEndpoints":{"blob":"https://iothubtestkanoda.blob.core.windows.net/","queue":"https://iothubtestkanoda.queue.core.windows.net/","table":"https://iothubtestkanoda.table.core.windows.net/","file":"https://iothubtestkanoda.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestkanoda-secondary.blob.core.windows.net/","queue":"https://iothubtestkanoda-secondary.queue.core.windows.net/","table":"https://iothubtestkanoda-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlinsqi","name":"iothubtestlinsqi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T06:56:19.6934403Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T06:56:19.5684188Z","primaryEndpoints":{"blob":"https://iothubtestlinsqi.blob.core.windows.net/","queue":"https://iothubtestlinsqi.queue.core.windows.net/","table":"https://iothubtestlinsqi.table.core.windows.net/","file":"https://iothubtestlinsqi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlinsqi-secondary.blob.core.windows.net/","queue":"https://iothubtestlinsqi-secondary.queue.core.windows.net/","table":"https://iothubtestlinsqi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestlygasch","name":"iothubtestlygasch","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T22:53:48.3620920Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T22:53:48.2371055Z","primaryEndpoints":{"blob":"https://iothubtestlygasch.blob.core.windows.net/","queue":"https://iothubtestlygasch.queue.core.windows.net/","table":"https://iothubtestlygasch.table.core.windows.net/","file":"https://iothubtestlygasch.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestlygasch-secondary.blob.core.windows.net/","queue":"https://iothubtestlygasch-secondary.queue.core.windows.net/","table":"https://iothubtestlygasch-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaazer","name":"iothubtestmaazer","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-07T20:04:50.6787511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-07T20:04:50.5225085Z","primaryEndpoints":{"blob":"https://iothubtestmaazer.blob.core.windows.net/","queue":"https://iothubtestmaazer.queue.core.windows.net/","table":"https://iothubtestmaazer.table.core.windows.net/","file":"https://iothubtestmaazer.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaazer-secondary.blob.core.windows.net/","queue":"https://iothubtestmaazer-secondary.queue.core.windows.net/","table":"https://iothubtestmaazer-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmaga","name":"iothubtestmaga","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-21T22:18:11.7832424Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T22:18:11.6739090Z","primaryEndpoints":{"blob":"https://iothubtestmaga.blob.core.windows.net/","queue":"https://iothubtestmaga.queue.core.windows.net/","table":"https://iothubtestmaga.table.core.windows.net/","file":"https://iothubtestmaga.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmaga-secondary.blob.core.windows.net/","queue":"https://iothubtestmaga-secondary.queue.core.windows.net/","table":"https://iothubtestmaga-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmatwal","name":"iothubtestmatwal","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-27T21:32:56.0951227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:32:55.9700835Z","primaryEndpoints":{"blob":"https://iothubtestmatwal.blob.core.windows.net/","queue":"https://iothubtestmatwal.queue.core.windows.net/","table":"https://iothubtestmatwal.table.core.windows.net/","file":"https://iothubtestmatwal.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmatwal-secondary.blob.core.windows.net/","queue":"https://iothubtestmatwal-secondary.queue.core.windows.net/","table":"https://iothubtestmatwal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestminune","name":"iothubtestminune","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-22T00:18:00.1021248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T00:17:59.9927105Z","primaryEndpoints":{"blob":"https://iothubtestminune.blob.core.windows.net/","queue":"https://iothubtestminune.queue.core.windows.net/","table":"https://iothubtestminune.table.core.windows.net/","file":"https://iothubtestminune.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestminune-secondary.blob.core.windows.net/","queue":"https://iothubtestminune-secondary.queue.core.windows.net/","table":"https://iothubtestminune-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestmugunm","name":"iothubtestmugunm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-17T18:43:40.9925534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-17T18:43:40.8831823Z","primaryEndpoints":{"blob":"https://iothubtestmugunm.blob.core.windows.net/","queue":"https://iothubtestmugunm.queue.core.windows.net/","table":"https://iothubtestmugunm.table.core.windows.net/","file":"https://iothubtestmugunm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestmugunm-secondary.blob.core.windows.net/","queue":"https://iothubtestmugunm-secondary.queue.core.windows.net/","table":"https://iothubtestmugunm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnadeshpa","name":"iothubtestnadeshpa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-26T23:12:51.3658843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-26T23:12:51.2252415Z","primaryEndpoints":{"blob":"https://iothubtestnadeshpa.blob.core.windows.net/","queue":"https://iothubtestnadeshpa.queue.core.windows.net/","table":"https://iothubtestnadeshpa.table.core.windows.net/","file":"https://iothubtestnadeshpa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnadeshpa-secondary.blob.core.windows.net/","queue":"https://iothubtestnadeshpa-secondary.queue.core.windows.net/","table":"https://iothubtestnadeshpa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnebanfic","name":"iothubtestnebanfic","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-05T21:56:11.5220934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-05T21:56:11.3814714Z","primaryEndpoints":{"blob":"https://iothubtestnebanfic.blob.core.windows.net/","queue":"https://iothubtestnebanfic.queue.core.windows.net/","table":"https://iothubtestnebanfic.table.core.windows.net/","file":"https://iothubtestnebanfic.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnebanfic-secondary.blob.core.windows.net/","queue":"https://iothubtestnebanfic-secondary.queue.core.windows.net/","table":"https://iothubtestnebanfic-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnimengan","name":"iothubtestnimengan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-01T14:31:46.7541480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-01T14:31:46.6447731Z","primaryEndpoints":{"blob":"https://iothubtestnimengan.blob.core.windows.net/","queue":"https://iothubtestnimengan.queue.core.windows.net/","table":"https://iothubtestnimengan.table.core.windows.net/","file":"https://iothubtestnimengan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnimengan-secondary.blob.core.windows.net/","queue":"https://iothubtestnimengan-secondary.queue.core.windows.net/","table":"https://iothubtestnimengan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestnivithla","name":"iothubtestnivithla","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-26T02:25:41.2356248Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-26T02:25:41.1262385Z","primaryEndpoints":{"blob":"https://iothubtestnivithla.blob.core.windows.net/","queue":"https://iothubtestnivithla.queue.core.windows.net/","table":"https://iothubtestnivithla.table.core.windows.net/","file":"https://iothubtestnivithla.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestnivithla-secondary.blob.core.windows.net/","queue":"https://iothubtestnivithla-secondary.queue.core.windows.net/","table":"https://iothubtestnivithla-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprashmo","name":"iothubtestprashmo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-10T21:44:41.9501984Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-10T21:44:41.8251549Z","primaryEndpoints":{"blob":"https://iothubtestprashmo.blob.core.windows.net/","queue":"https://iothubtestprashmo.queue.core.windows.net/","table":"https://iothubtestprashmo.table.core.windows.net/","file":"https://iothubtestprashmo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprashmo-secondary.blob.core.windows.net/","queue":"https://iothubtestprashmo-secondary.queue.core.windows.net/","table":"https://iothubtestprashmo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestprepr","name":"iothubtestprepr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-05T17:19:25.5280923Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-05T17:19:25.3718430Z","primaryEndpoints":{"blob":"https://iothubtestprepr.blob.core.windows.net/","queue":"https://iothubtestprepr.queue.core.windows.net/","table":"https://iothubtestprepr.table.core.windows.net/","file":"https://iothubtestprepr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestprepr-secondary.blob.core.windows.net/","queue":"https://iothubtestprepr-secondary.queue.core.windows.net/","table":"https://iothubtestprepr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrajave","name":"iothubtestrajave","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-20T00:31:23.3174802Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-20T00:31:23.1768369Z","primaryEndpoints":{"blob":"https://iothubtestrajave.blob.core.windows.net/","queue":"https://iothubtestrajave.queue.core.windows.net/","table":"https://iothubtestrajave.table.core.windows.net/","file":"https://iothubtestrajave.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrajave-secondary.blob.core.windows.net/","queue":"https://iothubtestrajave-secondary.queue.core.windows.net/","table":"https://iothubtestrajave-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestraviy","name":"iothubtestraviy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-21T17:42:52.4671698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T17:42:52.3734464Z","primaryEndpoints":{"blob":"https://iothubtestraviy.blob.core.windows.net/","queue":"https://iothubtestraviy.queue.core.windows.net/","table":"https://iothubtestraviy.table.core.windows.net/","file":"https://iothubtestraviy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestraviy-secondary.blob.core.windows.net/","queue":"https://iothubtestraviy-secondary.queue.core.windows.net/","table":"https://iothubtestraviy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrechan","name":"iothubtestrechan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-27T21:57:31.2699690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-27T21:57:31.1606191Z","primaryEndpoints":{"blob":"https://iothubtestrechan.blob.core.windows.net/","queue":"https://iothubtestrechan.queue.core.windows.net/","table":"https://iothubtestrechan.table.core.windows.net/","file":"https://iothubtestrechan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrechan-secondary.blob.core.windows.net/","queue":"https://iothubtestrechan-secondary.queue.core.windows.net/","table":"https://iothubtestrechan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrentu","name":"iothubtestrentu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-24T01:40:53.8337244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:40:53.7087040Z","primaryEndpoints":{"blob":"https://iothubtestrentu.blob.core.windows.net/","queue":"https://iothubtestrentu.queue.core.windows.net/","table":"https://iothubtestrentu.table.core.windows.net/","file":"https://iothubtestrentu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrentu-secondary.blob.core.windows.net/","queue":"https://iothubtestrentu-secondary.queue.core.windows.net/","table":"https://iothubtestrentu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestrokhande","name":"iothubtestrokhande","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T02:32:15.2949526Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T02:32:15.1855822Z","primaryEndpoints":{"blob":"https://iothubtestrokhande.blob.core.windows.net/","queue":"https://iothubtestrokhande.queue.core.windows.net/","table":"https://iothubtestrokhande.table.core.windows.net/","file":"https://iothubtestrokhande.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestrokhande-secondary.blob.core.windows.net/","queue":"https://iothubtestrokhande-secondary.queue.core.windows.net/","table":"https://iothubtestrokhande-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsachinc","name":"iothubtestsachinc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-13T20:57:22.2916575Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T20:57:22.1666634Z","primaryEndpoints":{"blob":"https://iothubtestsachinc.blob.core.windows.net/","queue":"https://iothubtestsachinc.queue.core.windows.net/","table":"https://iothubtestsachinc.table.core.windows.net/","file":"https://iothubtestsachinc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsachinc-secondary.blob.core.windows.net/","queue":"https://iothubtestsachinc-secondary.queue.core.windows.net/","table":"https://iothubtestsachinc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsaganeri","name":"iothubtestsaganeri","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T00:08:11.3528212Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T00:08:11.2278020Z","primaryEndpoints":{"blob":"https://iothubtestsaganeri.blob.core.windows.net/","queue":"https://iothubtestsaganeri.queue.core.windows.net/","table":"https://iothubtestsaganeri.table.core.windows.net/","file":"https://iothubtestsaganeri.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsaganeri-secondary.blob.core.windows.net/","queue":"https://iothubtestsaganeri-secondary.queue.core.windows.net/","table":"https://iothubtestsaganeri-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsalall","name":"iothubtestsalall","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-08T21:34:10.3123694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-08T21:34:10.1717362Z","primaryEndpoints":{"blob":"https://iothubtestsalall.blob.core.windows.net/","queue":"https://iothubtestsalall.queue.core.windows.net/","table":"https://iothubtestsalall.table.core.windows.net/","file":"https://iothubtestsalall.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsalall-secondary.blob.core.windows.net/","queue":"https://iothubtestsalall-secondary.queue.core.windows.net/","table":"https://iothubtestsalall-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsamguo","name":"iothubtestsamguo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-16T04:02:49.9178112Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-16T04:02:49.8084201Z","primaryEndpoints":{"blob":"https://iothubtestsamguo.blob.core.windows.net/","queue":"https://iothubtestsamguo.queue.core.windows.net/","table":"https://iothubtestsamguo.table.core.windows.net/","file":"https://iothubtestsamguo.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsamguo-secondary.blob.core.windows.net/","queue":"https://iothubtestsamguo-secondary.queue.core.windows.net/","table":"https://iothubtestsamguo-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestsansun","name":"iothubtestsansun","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T22:00:12.0763605Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T22:00:11.9669713Z","primaryEndpoints":{"blob":"https://iothubtestsansun.blob.core.windows.net/","queue":"https://iothubtestsansun.queue.core.windows.net/","table":"https://iothubtestsansun.table.core.windows.net/","file":"https://iothubtestsansun.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestsansun-secondary.blob.core.windows.net/","queue":"https://iothubtestsansun-secondary.queue.core.windows.net/","table":"https://iothubtestsansun-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestshishu","name":"iothubtestshishu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-22T02:08:28.3281402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-22T02:08:28.2187591Z","primaryEndpoints":{"blob":"https://iothubtestshishu.blob.core.windows.net/","queue":"https://iothubtestshishu.queue.core.windows.net/","table":"https://iothubtestshishu.table.core.windows.net/","file":"https://iothubtestshishu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestshishu-secondary.blob.core.windows.net/","queue":"https://iothubtestshishu-secondary.queue.core.windows.net/","table":"https://iothubtestshishu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestskintali","name":"iothubtestskintali","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T00:54:13.7735663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T00:54:13.6485612Z","primaryEndpoints":{"blob":"https://iothubtestskintali.blob.core.windows.net/","queue":"https://iothubtestskintali.queue.core.windows.net/","table":"https://iothubtestskintali.table.core.windows.net/","file":"https://iothubtestskintali.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestskintali-secondary.blob.core.windows.net/","queue":"https://iothubtestskintali-secondary.queue.core.windows.net/","table":"https://iothubtestskintali-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestspradhan","name":"iothubtestspradhan","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T03:14:36.8354793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T03:14:36.7417452Z","primaryEndpoints":{"blob":"https://iothubtestspradhan.blob.core.windows.net/","queue":"https://iothubtestspradhan.queue.core.windows.net/","table":"https://iothubtestspradhan.table.core.windows.net/","file":"https://iothubtestspradhan.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestspradhan-secondary.blob.core.windows.net/","queue":"https://iothubtestspradhan-secondary.queue.core.windows.net/","table":"https://iothubtestspradhan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestswkrovvi","name":"iothubtestswkrovvi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-21T22:29:05.6616394Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-21T22:29:05.5365174Z","primaryEndpoints":{"blob":"https://iothubtestswkrovvi.blob.core.windows.net/","queue":"https://iothubtestswkrovvi.queue.core.windows.net/","table":"https://iothubtestswkrovvi.table.core.windows.net/","file":"https://iothubtestswkrovvi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestswkrovvi-secondary.blob.core.windows.net/","queue":"https://iothubtestswkrovvi-secondary.queue.core.windows.net/","table":"https://iothubtestswkrovvi-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttadesseb","name":"iothubtesttadesseb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-13T17:12:33.5746716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-13T17:12:33.4184293Z","primaryEndpoints":{"blob":"https://iothubtesttadesseb.blob.core.windows.net/","queue":"https://iothubtesttadesseb.queue.core.windows.net/","table":"https://iothubtesttadesseb.table.core.windows.net/","file":"https://iothubtesttadesseb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttadesseb-secondary.blob.core.windows.net/","queue":"https://iothubtesttadesseb-secondary.queue.core.windows.net/","table":"https://iothubtesttadesseb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtesttestarm5","name":"iothubtesttestarm5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-21T21:30:06.5662578Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-21T21:30:06.3944118Z","primaryEndpoints":{"blob":"https://iothubtesttestarm5.blob.core.windows.net/","queue":"https://iothubtesttestarm5.queue.core.windows.net/","table":"https://iothubtesttestarm5.table.core.windows.net/","file":"https://iothubtesttestarm5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtesttestarm5-secondary.blob.core.windows.net/","queue":"https://iothubtesttestarm5-secondary.queue.core.windows.net/","table":"https://iothubtesttestarm5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestvishalg","name":"iothubtestvishalg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-03T23:08:30.1629459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-03T23:08:30.0223446Z","primaryEndpoints":{"blob":"https://iothubtestvishalg.blob.core.windows.net/","queue":"https://iothubtestvishalg.queue.core.windows.net/","table":"https://iothubtestvishalg.table.core.windows.net/","file":"https://iothubtestvishalg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestvishalg-secondary.blob.core.windows.net/","queue":"https://iothubtestvishalg-secondary.queue.core.windows.net/","table":"https://iothubtestvishalg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzadixon","name":"iothubtestzadixon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T19:01:04.1359602Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T19:01:04.0109651Z","primaryEndpoints":{"blob":"https://iothubtestzadixon.blob.core.windows.net/","queue":"https://iothubtestzadixon.queue.core.windows.net/","table":"https://iothubtestzadixon.table.core.windows.net/","file":"https://iothubtestzadixon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzadixon-secondary.blob.core.windows.net/","queue":"https://iothubtestzadixon-secondary.queue.core.windows.net/","table":"https://iothubtestzadixon-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen10","name":"iothubtestzagen10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-03T17:25:38.7998788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:25:38.6905986Z","primaryEndpoints":{"blob":"https://iothubtestzagen10.blob.core.windows.net/","queue":"https://iothubtestzagen10.queue.core.windows.net/","table":"https://iothubtestzagen10.table.core.windows.net/","file":"https://iothubtestzagen10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen10-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen10-secondary.queue.core.windows.net/","table":"https://iothubtestzagen10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen12","name":"iothubtestzagen12","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-03T20:57:42.5504915Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:57:42.4098682Z","primaryEndpoints":{"blob":"https://iothubtestzagen12.blob.core.windows.net/","queue":"https://iothubtestzagen12.queue.core.windows.net/","table":"https://iothubtestzagen12.table.core.windows.net/","file":"https://iothubtestzagen12.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen12-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen12-secondary.queue.core.windows.net/","table":"https://iothubtestzagen12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen13","name":"iothubtestzagen13","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-03T20:55:48.1065348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T20:55:47.9972019Z","primaryEndpoints":{"blob":"https://iothubtestzagen13.blob.core.windows.net/","queue":"https://iothubtestzagen13.queue.core.windows.net/","table":"https://iothubtestzagen13.table.core.windows.net/","file":"https://iothubtestzagen13.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen13-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen13-secondary.queue.core.windows.net/","table":"https://iothubtestzagen13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen14","name":"iothubtestzagen14","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-04T09:13:59.3653256Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T09:13:59.2559614Z","primaryEndpoints":{"blob":"https://iothubtestzagen14.blob.core.windows.net/","queue":"https://iothubtestzagen14.queue.core.windows.net/","table":"https://iothubtestzagen14.table.core.windows.net/","file":"https://iothubtestzagen14.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen14-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen14-secondary.queue.core.windows.net/","table":"https://iothubtestzagen14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagen15","name":"iothubtestzagen15","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-14T07:43:56.6362617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-14T07:43:56.5112954Z","primaryEndpoints":{"blob":"https://iothubtestzagen15.blob.core.windows.net/","queue":"https://iothubtestzagen15.queue.core.windows.net/","table":"https://iothubtestzagen15.table.core.windows.net/","file":"https://iothubtestzagen15.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagen15-secondary.blob.core.windows.net/","queue":"https://iothubtestzagen15-secondary.queue.core.windows.net/","table":"https://iothubtestzagen15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent5","name":"iothubtestzagent5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-04T22:41:21.3877903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T22:41:21.2471564Z","primaryEndpoints":{"blob":"https://iothubtestzagent5.blob.core.windows.net/","queue":"https://iothubtestzagent5.queue.core.windows.net/","table":"https://iothubtestzagent5.table.core.windows.net/","file":"https://iothubtestzagent5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent5-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent5-secondary.queue.core.windows.net/","table":"https://iothubtestzagent5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent6","name":"iothubtestzagent6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-03T17:23:38.1747384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T17:23:38.0340787Z","primaryEndpoints":{"blob":"https://iothubtestzagent6.blob.core.windows.net/","queue":"https://iothubtestzagent6.queue.core.windows.net/","table":"https://iothubtestzagent6.table.core.windows.net/","file":"https://iothubtestzagent6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent6-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent6-secondary.queue.core.windows.net/","table":"https://iothubtestzagent6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent7","name":"iothubtestzagent7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-03T19:01:03.1697828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-03T19:01:03.0291717Z","primaryEndpoints":{"blob":"https://iothubtestzagent7.blob.core.windows.net/","queue":"https://iothubtestzagent7.queue.core.windows.net/","table":"https://iothubtestzagent7.table.core.windows.net/","file":"https://iothubtestzagent7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent7-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent7-secondary.queue.core.windows.net/","table":"https://iothubtestzagent7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzagent8","name":"iothubtestzagent8","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-12T20:34:35.5303810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T20:34:35.3897729Z","primaryEndpoints":{"blob":"https://iothubtestzagent8.blob.core.windows.net/","queue":"https://iothubtestzagent8.queue.core.windows.net/","table":"https://iothubtestzagent8.table.core.windows.net/","file":"https://iothubtestzagent8.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzagent8-secondary.blob.core.windows.net/","queue":"https://iothubtestzagent8-secondary.queue.core.windows.net/","table":"https://iothubtestzagent8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzhangyih","name":"iothubtestzhangyih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-25T01:43:54.7392794Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T01:43:54.5986244Z","primaryEndpoints":{"blob":"https://iothubtestzhangyih.blob.core.windows.net/","queue":"https://iothubtestzhangyih.queue.core.windows.net/","table":"https://iothubtestzhangyih.table.core.windows.net/","file":"https://iothubtestzhangyih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzhangyih-secondary.blob.core.windows.net/","queue":"https://iothubtestzhangyih-secondary.queue.core.windows.net/","table":"https://iothubtestzhangyih-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/iothubtestzheg","name":"iothubtestzheg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-21T06:16:21.9424285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-21T06:16:21.8173801Z","primaryEndpoints":{"blob":"https://iothubtestzheg.blob.core.windows.net/","queue":"https://iothubtestzheg.queue.core.windows.net/","table":"https://iothubtestzheg.table.core.windows.net/","file":"https://iothubtestzheg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://iothubtestzheg-secondary.blob.core.windows.net/","queue":"https://iothubtestzheg-secondary.queue.core.windows.net/","table":"https://iothubtestzheg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/isyamaiothubcit","name":"isyamaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T15:04:59.0042709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:04:57.2489700Z","primaryEndpoints":{"blob":"https://isyamaiothubcit.blob.core.windows.net/","queue":"https://isyamaiothubcit.queue.core.windows.net/","table":"https://isyamaiothubcit.table.core.windows.net/","file":"https://isyamaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jichangiothubcit","name":"jichangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-12T21:05:37.5142436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-12T21:05:37.0234414Z","primaryEndpoints":{"blob":"https://jichangiothubcit.blob.core.windows.net/","queue":"https://jichangiothubcit.queue.core.windows.net/","table":"https://jichangiothubcit.table.core.windows.net/","file":"https://jichangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/johnlangiothubcit","name":"johnlangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:34:59.0687317Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-24T22:34:58.7171792Z","primaryEndpoints":{"blob":"https://johnlangiothubcit.blob.core.windows.net/","queue":"https://johnlangiothubcit.queue.core.windows.net/","table":"https://johnlangiothubcit.table.core.windows.net/","file":"https://johnlangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/jucarpioiothubcit","name":"jucarpioiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-29T17:16:27.3009774Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-29T17:16:27.2072274Z","primaryEndpoints":{"blob":"https://jucarpioiothubcit.blob.core.windows.net/","queue":"https://jucarpioiothubcit.queue.core.windows.net/","table":"https://jucarpioiothubcit.table.core.windows.net/","file":"https://jucarpioiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jucarpioiothubcit-secondary.blob.core.windows.net/","queue":"https://jucarpioiothubcit-secondary.queue.core.windows.net/","table":"https://jucarpioiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kaagarwiothubcit","name":"kaagarwiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T06:06:26.8955576Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T06:06:26.6267988Z","primaryEndpoints":{"blob":"https://kaagarwiothubcit.blob.core.windows.net/","queue":"https://kaagarwiothubcit.queue.core.windows.net/","table":"https://kaagarwiothubcit.table.core.windows.net/","file":"https://kaagarwiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/kanodaiothubcit","name":"kanodaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-19T23:35:00.9989176Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-19T23:35:00.4391558Z","primaryEndpoints":{"blob":"https://kanodaiothubcit.blob.core.windows.net/","queue":"https://kanodaiothubcit.queue.core.windows.net/","table":"https://kanodaiothubcit.table.core.windows.net/","file":"https://kanodaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/linsqiiothubcit","name":"linsqiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-20T19:49:19.2524010Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-20T19:49:18.9998610Z","primaryEndpoints":{"blob":"https://linsqiiothubcit.blob.core.windows.net/","queue":"https://linsqiiothubcit.queue.core.windows.net/","table":"https://linsqiiothubcit.table.core.windows.net/","file":"https://linsqiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/lygaschiothubcit","name":"lygaschiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T19:34:05.1709811Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T19:34:04.6656017Z","primaryEndpoints":{"blob":"https://lygaschiothubcit.blob.core.windows.net/","queue":"https://lygaschiothubcit.queue.core.windows.net/","table":"https://lygaschiothubcit.table.core.windows.net/","file":"https://lygaschiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/magaiothubcit","name":"magaiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T17:36:06.6232554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T17:36:06.2860424Z","primaryEndpoints":{"blob":"https://magaiothubcit.blob.core.windows.net/","queue":"https://magaiothubcit.queue.core.windows.net/","table":"https://magaiothubcit.table.core.windows.net/","file":"https://magaiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/matwaliothubcit","name":"matwaliothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-22T22:14:50.8761511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-22T22:14:50.6085814Z","primaryEndpoints":{"blob":"https://matwaliothubcit.blob.core.windows.net/","queue":"https://matwaliothubcit.queue.core.windows.net/","table":"https://matwaliothubcit.table.core.windows.net/","file":"https://matwaliothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Storage/storageAccounts/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-04T21:16:07.0257537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-04T21:16:06.9164057Z","primaryEndpoints":{"blob":"https://maxgpgtest.blob.core.windows.net/","queue":"https://maxgpgtest.queue.core.windows.net/","table":"https://maxgpgtest.table.core.windows.net/","file":"https://maxgpgtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mchaiiothubcit","name":"mchaiiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-17T04:55:59.9537015Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-17T04:55:59.5871757Z","primaryEndpoints":{"blob":"https://mchaiiothubcit.blob.core.windows.net/","queue":"https://mchaiiothubcit.queue.core.windows.net/","table":"https://mchaiiothubcit.table.core.windows.net/","file":"https://mchaiiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/minuneiothubcit","name":"minuneiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T22:08:51.1996039Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T22:08:50.9114352Z","primaryEndpoints":{"blob":"https://minuneiothubcit.blob.core.windows.net/","queue":"https://minuneiothubcit.queue.core.windows.net/","table":"https://minuneiothubcit.table.core.windows.net/","file":"https://minuneiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/mugunmiothubcit","name":"mugunmiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-28T19:28:09.0511768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-28T19:28:08.9573846Z","primaryEndpoints":{"blob":"https://mugunmiothubcit.blob.core.windows.net/","queue":"https://mugunmiothubcit.queue.core.windows.net/","table":"https://mugunmiothubcit.table.core.windows.net/","file":"https://mugunmiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://mugunmiothubcit-secondary.blob.core.windows.net/","queue":"https://mugunmiothubcit-secondary.queue.core.windows.net/","table":"https://mugunmiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prashmoiothubcit","name":"prashmoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-02T18:11:59.1467384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-02T18:11:58.4338012Z","primaryEndpoints":{"blob":"https://prashmoiothubcit.blob.core.windows.net/","queue":"https://prashmoiothubcit.queue.core.windows.net/","table":"https://prashmoiothubcit.table.core.windows.net/","file":"https://prashmoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/prmoodabiothubcit","name":"prmoodabiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-01T01:53:54.1652968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-01T01:53:53.8371679Z","primaryEndpoints":{"blob":"https://prmoodabiothubcit.blob.core.windows.net/","queue":"https://prmoodabiothubcit.queue.core.windows.net/","table":"https://prmoodabiothubcit.table.core.windows.net/","file":"https://prmoodabiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/raviyiothubcit","name":"raviyiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5738364Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T17:18:08.5728378Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-28T17:18:08.1103188Z","primaryEndpoints":{"blob":"https://raviyiothubcit.blob.core.windows.net/","queue":"https://raviyiothubcit.queue.core.windows.net/","table":"https://raviyiothubcit.table.core.windows.net/","file":"https://raviyiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rechaniothubcit","name":"rechaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:48:08.7774801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:48:08.4822545Z","primaryEndpoints":{"blob":"https://rechaniothubcit.blob.core.windows.net/","queue":"https://rechaniothubcit.queue.core.windows.net/","table":"https://rechaniothubcit.table.core.windows.net/","file":"https://rechaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rentuiothubcit","name":"rentuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-23T02:00:43.0527957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-23T02:00:41.8986910Z","primaryEndpoints":{"blob":"https://rentuiothubcit.blob.core.windows.net/","queue":"https://rentuiothubcit.queue.core.windows.net/","table":"https://rentuiothubcit.table.core.windows.net/","file":"https://rentuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/rokhandeiothubcit","name":"rokhandeiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T00:16:45.7928312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T00:16:42.3514491Z","primaryEndpoints":{"blob":"https://rokhandeiothubcit.blob.core.windows.net/","queue":"https://rokhandeiothubcit.queue.core.windows.net/","table":"https://rokhandeiothubcit.table.core.windows.net/","file":"https://rokhandeiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sachinciothubcit","name":"sachinciothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T20:39:09.7624513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T20:39:09.6686899Z","primaryEndpoints":{"blob":"https://sachinciothubcit.blob.core.windows.net/","queue":"https://sachinciothubcit.queue.core.windows.net/","table":"https://sachinciothubcit.table.core.windows.net/","file":"https://sachinciothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sachinciothubcit-secondary.blob.core.windows.net/","queue":"https://sachinciothubcit-secondary.queue.core.windows.net/","table":"https://sachinciothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/samguoiothubcit","name":"samguoiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T21:26:40.7561229Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T21:26:40.2749499Z","primaryEndpoints":{"blob":"https://samguoiothubcit.blob.core.windows.net/","queue":"https://samguoiothubcit.queue.core.windows.net/","table":"https://samguoiothubcit.table.core.windows.net/","file":"https://samguoiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/sansuniothubcit","name":"sansuniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-07T21:49:22.6790510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-07T21:49:22.1126212Z","primaryEndpoints":{"blob":"https://sansuniothubcit.blob.core.windows.net/","queue":"https://sansuniothubcit.queue.core.windows.net/","table":"https://sansuniothubcit.table.core.windows.net/","file":"https://sansuniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sfdgsfmonitoring9772","name":"sfdgsfmonitoring9772","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3124233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sfdgsfmonitoring9772.blob.core.windows.net/","queue":"https://sfdgsfmonitoring9772.queue.core.windows.net/","table":"https://sfdgsfmonitoring9772.table.core.windows.net/","file":"https://sfdgsfmonitoring9772.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/sflogssfmonitoring8971","name":"sflogssfmonitoring8971","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"resourceType":"Service + Fabric","clusterName":"sfmonitoring"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T23:46:11.3280513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T23:46:11.2342792Z","primaryEndpoints":{"blob":"https://sflogssfmonitoring8971.blob.core.windows.net/","queue":"https://sflogssfmonitoring8971.queue.core.windows.net/","table":"https://sflogssfmonitoring8971.table.core.windows.net/","file":"https://sflogssfmonitoring8971.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shishuiothubcit","name":"shishuiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T02:00:12.7386346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T02:00:11.3804834Z","primaryEndpoints":{"blob":"https://shishuiothubcit.blob.core.windows.net/","queue":"https://shishuiothubcit.queue.core.windows.net/","table":"https://shishuiothubcit.table.core.windows.net/","file":"https://shishuiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/shsiniothubcit","name":"shsiniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T18:54:22.6002873Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T18:54:22.2465475Z","primaryEndpoints":{"blob":"https://shsiniothubcit.blob.core.windows.net/","queue":"https://shsiniothubcit.queue.core.windows.net/","table":"https://shsiniothubcit.table.core.windows.net/","file":"https://shsiniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/c_westus/providers/Microsoft.Storage/storageAccounts/simmvp3ovk0c6molt3c7178","name":"simmvp3ovk0c6molt3c7178","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T01:14:27.6382801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T01:14:27.5133334Z","primaryEndpoints":{"blob":"https://simmvp3ovk0c6molt3c7178.blob.core.windows.net/","queue":"https://simmvp3ovk0c6molt3c7178.queue.core.windows.net/","table":"https://simmvp3ovk0c6molt3c7178.table.core.windows.net/","file":"https://simmvp3ovk0c6molt3c7178.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/skintaliiothubcit","name":"skintaliiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-09T17:41:46.6823975Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-09T17:41:45.7371185Z","primaryEndpoints":{"blob":"https://skintaliiothubcit.blob.core.windows.net/","queue":"https://skintaliiothubcit.queue.core.windows.net/","table":"https://skintaliiothubcit.table.core.windows.net/","file":"https://skintaliiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag215","name":"skintalitestdiag215","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T17:06:36.7871542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T17:06:36.6308986Z","primaryEndpoints":{"blob":"https://skintalitestdiag215.blob.core.windows.net/","queue":"https://skintalitestdiag215.queue.core.windows.net/","table":"https://skintalitestdiag215.table.core.windows.net/","file":"https://skintalitestdiag215.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/spradhaniothubcit","name":"spradhaniothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T01:58:31.7445214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T01:58:31.5211384Z","primaryEndpoints":{"blob":"https://spradhaniothubcit.blob.core.windows.net/","queue":"https://spradhaniothubcit.queue.core.windows.net/","table":"https://spradhaniothubcit.table.core.windows.net/","file":"https://spradhaniothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit","name":"swkrovviiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-21T01:25:21.6184892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T01:25:21.5403646Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit.blob.core.windows.net/","queue":"https://swkrovviiothubcit.queue.core.windows.net/","table":"https://swkrovviiothubcit.table.core.windows.net/","file":"https://swkrovviiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swkrovviiothubcit-secondary.blob.core.windows.net/","queue":"https://swkrovviiothubcit-secondary.queue.core.windows.net/","table":"https://swkrovviiothubcit-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swkrovviiothubcit1","name":"swkrovviiothubcit1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T18:45:58.9020866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T18:45:58.6492226Z","primaryEndpoints":{"blob":"https://swkrovviiothubcit1.blob.core.windows.net/","queue":"https://swkrovviiothubcit1.queue.core.windows.net/","table":"https://swkrovviiothubcit1.table.core.windows.net/","file":"https://swkrovviiothubcit1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tmghirsiothubcit","name":"tmghirsiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-03T19:08:15.9360596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-03T19:08:15.0514244Z","primaryEndpoints":{"blob":"https://tmghirsiothubcit.blob.core.windows.net/","queue":"https://tmghirsiothubcit.queue.core.windows.net/","table":"https://tmghirsiothubcit.table.core.windows.net/","file":"https://tmghirsiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/tskwangiothubcit","name":"tskwangiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T22:55:48.8547291Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T22:55:47.5111919Z","primaryEndpoints":{"blob":"https://tskwangiothubcit.blob.core.windows.net/","queue":"https://tskwangiothubcit.queue.core.windows.net/","table":"https://tskwangiothubcit.table.core.windows.net/","file":"https://tskwangiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/vishalgiothubcit","name":"vishalgiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-06T20:25:41.0308319Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-06T20:25:33.9040921Z","primaryEndpoints":{"blob":"https://vishalgiothubcit.blob.core.windows.net/","queue":"https://vishalgiothubcit.queue.core.windows.net/","table":"https://vishalgiothubcit.table.core.windows.net/","file":"https://vishalgiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/zhegiothubcit","name":"zhegiothubcit","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T23:52:44.9625335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-10T23:52:44.2862407Z","primaryEndpoints":{"blob":"https://zhegiothubcit.blob.core.windows.net/","queue":"https://zhegiothubcit.queue.core.windows.net/","table":"https://zhegiothubcit.table.core.windows.net/","file":"https://zhegiothubcit.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-eastasia/providers/Microsoft.Storage/storageAccounts/azurefunctions48de53ad","name":"azurefunctions48de53ad","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-10T23:52:11.4469778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-07T03:50:51.0676767Z","primaryEndpoints":{"blob":"https://azurefunctions48de53ad.blob.core.windows.net/","queue":"https://azurefunctions48de53ad.queue.core.windows.net/","table":"https://azurefunctions48de53ad.table.core.windows.net/","file":"https://azurefunctions48de53ad.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Storage/storageAccounts/mgtlabdiag","name":"mgtlabdiag","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-08T01:59:01.6599846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-08T01:59:01.5975155Z","primaryEndpoints":{"blob":"https://mgtlabdiag.blob.core.windows.net/","queue":"https://mgtlabdiag.queue.core.windows.net/","table":"https://mgtlabdiag.table.core.windows.net/","file":"https://mgtlabdiag.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs791d126603decx467axbe2","name":"cs791d126603decx467axbe2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T22:34:41.0056498Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-13T22:34:40.9275270Z","primaryEndpoints":{"blob":"https://cs791d126603decx467axbe2.blob.core.windows.net/","queue":"https://cs791d126603decx467axbe2.queue.core.windows.net/","table":"https://cs791d126603decx467axbe2.table.core.windows.net/","file":"https://cs791d126603decx467axbe2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fips-finagle-investigate/providers/Microsoft.Storage/storageAccounts/fips0finagle0investigate","name":"fips0finagle0investigate","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-27T00:52:30.4399870Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-02-27T00:52:30.3775048Z","primaryEndpoints":{"blob":"https://fips0finagle0investigate.blob.core.windows.net/","queue":"https://fips0finagle0investigate.queue.core.windows.net/","table":"https://fips0finagle0investigate.table.core.windows.net/","file":"https://fips0finagle0investigate.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/miyagley/providers/Microsoft.Storage/storageAccounts/function0c82070eabc5","name":"function0c82070eabc5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9713879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-07T21:03:18.4828043Z","primaryEndpoints":{"blob":"https://function0c82070eabc5.blob.core.windows.net/","queue":"https://function0c82070eabc5.queue.core.windows.net/","table":"https://function0c82070eabc5.table.core.windows.net/","file":"https://function0c82070eabc5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function54b908f29d33","name":"function54b908f29d33","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:34.9870109Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-02T22:10:34.8340206Z","primaryEndpoints":{"blob":"https://function54b908f29d33.blob.core.windows.net/","queue":"https://function54b908f29d33.queue.core.windows.net/","table":"https://function54b908f29d33.table.core.windows.net/","file":"https://function54b908f29d33.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/affandarrg/providers/Microsoft.Storage/storageAccounts/function7aebf31db425","name":"function7aebf31db425","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-12-08T02:38:41.4801233Z","primaryEndpoints":{"blob":"https://function7aebf31db425.blob.core.windows.net/","queue":"https://function7aebf31db425.queue.core.windows.net/","table":"https://function7aebf31db425.table.core.windows.net/","file":"https://function7aebf31db425.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Storage/storageAccounts/function85cf19ff94fe","name":"function85cf19ff94fe","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"},"blob":{"enabled":true,"lastEnabledTime":"2017-12-30T18:05:35.0026417Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-04-03T20:21:39.9678247Z","primaryEndpoints":{"blob":"https://function85cf19ff94fe.blob.core.windows.net/","queue":"https://function85cf19ff94fe.queue.core.windows.net/","table":"https://function85cf19ff94fe.table.core.windows.net/","file":"https://function85cf19ff94fe.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtest/providers/Microsoft.Storage/storageAccounts/routetoservicebabb1","name":"routetoservicebabb1","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T06:57:22.4749948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-06-21T20:59:29.7774539Z","primaryEndpoints":{"blob":"https://routetoservicebabb1.blob.core.windows.net/","queue":"https://routetoservicebabb1.queue.core.windows.net/","table":"https://routetoservicebabb1.table.core.windows.net/","file":"https://routetoservicebabb1.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttest2ac","name":"routingrunsttest2ac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-25T01:55:14.6180789Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-25T01:55:14.5711807Z","primaryEndpoints":{"blob":"https://routingrunsttest2ac.blob.core.windows.net/","table":"https://routingrunsttest2ac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/routingrunsttestac","name":"routingrunsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-10T10:56:13.6495069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-10T10:56:13.5713870Z","primaryEndpoints":{"blob":"https://routingrunsttestac.blob.core.windows.net/","table":"https://routingrunsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Storage/storageAccounts/shishustoragenormal","name":"shishustoragenormal","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-06T18:54:05.1566219Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T18:54:05.0784961Z","primaryEndpoints":{"blob":"https://shishustoragenormal.blob.core.windows.net/","queue":"https://shishustoragenormal.queue.core.windows.net/","table":"https://shishustoragenormal.table.core.windows.net/","file":"https://shishustoragenormal.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shishustoragenormal-secondary.blob.core.windows.net/","queue":"https://shishustoragenormal-secondary.queue.core.windows.net/","table":"https://shishustoragenormal-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Storage/storageAccounts/storageconsttestac","name":"storageconsttestac","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-22T23:36:34.6897303Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-22T23:36:34.6272473Z","primaryEndpoints":{"blob":"https://storageconsttestac.blob.core.windows.net/","table":"https://storageconsttestac.table.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbuctestsa","name":"andbuctestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-06T06:23:59.6916529Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-06T06:23:59.6135355Z","primaryEndpoints":{"blob":"https://andbuctestsa.blob.core.windows.net/","queue":"https://andbuctestsa.queue.core.windows.net/","table":"https://andbuctestsa.table.core.windows.net/","file":"https://andbuctestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://andbuctestsa-secondary.blob.core.windows.net/","queue":"https://andbuctestsa-secondary.queue.core.windows.net/","table":"https://andbuctestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurpoc-rg/providers/Microsoft.Storage/storageAccounts/ankurpoc","name":"ankurpoc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-15T14:03:58.6091287Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-15T14:03:58.5309983Z","primaryEndpoints":{"blob":"https://ankurpoc.blob.core.windows.net/","queue":"https://ankurpoc.queue.core.windows.net/","table":"https://ankurpoc.table.core.windows.net/","file":"https://ankurpoc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ankurpoc-secondary.blob.core.windows.net/","queue":"https://ankurpoc-secondary.queue.core.windows.net/","table":"https://ankurpoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Storage/storageAccounts/contosostoragefkx2le3c","name":"contosostoragefkx2le3c","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T23:16:21.0467024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T23:16:20.9686058Z","primaryEndpoints":{"blob":"https://contosostoragefkx2le3c.blob.core.windows.net/","queue":"https://contosostoragefkx2le3c.queue.core.windows.net/","table":"https://contosostoragefkx2le3c.table.core.windows.net/","file":"https://contosostoragefkx2le3c.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Storage/storageAccounts/dtnotificationbugbash","name":"dtnotificationbugbash","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-03-24T23:06:57.8375407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-24T23:06:57.7437857Z","primaryEndpoints":{"blob":"https://dtnotificationbugbash.blob.core.windows.net/","queue":"https://dtnotificationbugbash.queue.core.windows.net/","table":"https://dtnotificationbugbash.table.core.windows.net/","file":"https://dtnotificationbugbash.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://dtnotificationbugbash-secondary.blob.core.windows.net/","queue":"https://dtnotificationbugbash-secondary.queue.core.windows.net/","table":"https://dtnotificationbugbash-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage2","name":"eliostorage2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T23:52:53.9177846Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:52:53.7771363Z","primaryEndpoints":{"blob":"https://eliostorage2.blob.core.windows.net/","queue":"https://eliostorage2.queue.core.windows.net/","table":"https://eliostorage2.table.core.windows.net/","file":"https://eliostorage2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Storage/storageAccounts/jichangrgdiag","name":"jichangrgdiag","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-06-01T23:47:57.8702165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-01T23:47:57.7921155Z","primaryEndpoints":{"blob":"https://jichangrgdiag.blob.core.windows.net/","queue":"https://jichangrgdiag.queue.core.windows.net/","table":"https://jichangrgdiag.table.core.windows.net/","file":"https://jichangrgdiag.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Storage/storageAccounts/storageaccountaskhu9745","name":"storageaccountaskhu9745","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-04-16T01:13:12.2529374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-04-16T01:13:12.1748216Z","primaryEndpoints":{"blob":"https://storageaccountaskhu9745.blob.core.windows.net/","queue":"https://storageaccountaskhu9745.queue.core.windows.net/","table":"https://storageaccountaskhu9745.table.core.windows.net/","file":"https://storageaccountaskhu9745.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/swethateststorageaccount","name":"swethateststorageaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-16T05:54:51.9157299Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-16T05:54:50.5306543Z","primaryEndpoints":{"blob":"https://swethateststorageaccount.blob.core.windows.net/","queue":"https://swethateststorageaccount.queue.core.windows.net/","table":"https://swethateststorageaccount.table.core.windows.net/","file":"https://swethateststorageaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://swethateststorageaccount-secondary.blob.core.windows.net/","queue":"https://swethateststorageaccount-secondary.queue.core.windows.net/","table":"https://swethateststorageaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtae3d","name":"upxintegrationtae3d","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:56:16.3490945Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:56:16.2397502Z","primaryEndpoints":{"blob":"https://upxintegrationtae3d.blob.core.windows.net/","queue":"https://upxintegrationtae3d.queue.core.windows.net/","table":"https://upxintegrationtae3d.table.core.windows.net/","file":"https://upxintegrationtae3d.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/control-plane-dps-tests-rg/providers/Microsoft.Storage/storageAccounts/upxintegrationtb505","name":"upxintegrationtb505","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-23T17:57:13.6258255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-23T17:57:13.4226914Z","primaryEndpoints":{"blob":"https://upxintegrationtb505.blob.core.windows.net/","queue":"https://upxintegrationtb505.queue.core.windows.net/","table":"https://upxintegrationtb505.table.core.windows.net/","file":"https://upxintegrationtb505.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag788","name":"magargdiag788","type":"Microsoft.Storage/storageAccounts","location":"centralindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-23T04:25:34.0687814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-23T04:25:34.0062642Z","primaryEndpoints":{"blob":"https://magargdiag788.blob.core.windows.net/","queue":"https://magargdiag788.queue.core.windows.net/","table":"https://magargdiag788.table.core.windows.net/","file":"https://magargdiag788.file.core.windows.net/"},"primaryLocation":"centralindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magargdiag","name":"magargdiag","type":"Microsoft.Storage/storageAccounts","location":"westindia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-13T22:06:54.0377338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-13T22:06:53.9752332Z","primaryEndpoints":{"blob":"https://magargdiag.blob.core.windows.net/","queue":"https://magargdiag.queue.core.windows.net/","table":"https://magargdiag.table.core.windows.net/","file":"https://magargdiag.file.core.windows.net/"},"primaryLocation":"westindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Storage/storageAccounts/andbucteststorage","name":"andbucteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-05-20T22:17:30.3625779Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-05-20T22:17:30.2844387Z","primaryEndpoints":{"blob":"https://andbucteststorage.blob.core.windows.net/","queue":"https://andbucteststorage.queue.core.windows.net/","table":"https://andbucteststorage.table.core.windows.net/","file":"https://andbucteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://andbucteststorage-secondary.blob.core.windows.net/","queue":"https://andbucteststorage-secondary.queue.core.windows.net/","table":"https://andbucteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Storage/storageAccounts/eliostorage3","name":"eliostorage3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T00:00:34.9166421Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T00:00:34.8384761Z","primaryEndpoints":{"blob":"https://eliostorage3.blob.core.windows.net/","queue":"https://eliostorage3.queue.core.windows.net/","table":"https://eliostorage3.table.core.windows.net/","file":"https://eliostorage3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Storage/storageAccounts/johnlangstorage","name":"johnlangstorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-29T18:33:15.9571927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-29T18:33:15.8634525Z","primaryEndpoints":{"blob":"https://johnlangstorage.blob.core.windows.net/","queue":"https://johnlangstorage.queue.core.windows.net/","table":"https://johnlangstorage.table.core.windows.net/","file":"https://johnlangstorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://johnlangstorage-secondary.blob.core.windows.net/","queue":"https://johnlangstorage-secondary.queue.core.windows.net/","table":"https://johnlangstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-site/providers/Microsoft.Storage/storageAccounts/rajstaticsite","name":"rajstaticsite","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-07T14:49:40.3058384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T14:49:40.2589627Z","primaryEndpoints":{"blob":"https://rajstaticsite.blob.core.windows.net/","queue":"https://rajstaticsite.queue.core.windows.net/","table":"https://rajstaticsite.table.core.windows.net/","file":"https://rajstaticsite.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Storage/storageAccounts/skintalitestdiag","name":"skintalitestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-02-27T00:38:53.4325904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T00:38:53.3700818Z","primaryEndpoints":{"blob":"https://skintalitestdiag.blob.core.windows.net/","queue":"https://skintalitestdiag.queue.core.windows.net/","table":"https://skintalitestdiag.table.core.windows.net/","file":"https://skintalitestdiag.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-SQL-WestUS2/providers/Microsoft.Storage/storageAccounts/sqlvajr7kop6qeku2c","name":"sqlvajr7kop6qeku2c","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-22T20:42:03.6485969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-22T20:42:03.5861028Z","primaryEndpoints":{"blob":"https://sqlvajr7kop6qeku2c.blob.core.windows.net/","queue":"https://sqlvajr7kop6qeku2c.queue.core.windows.net/","table":"https://sqlvajr7kop6qeku2c.table.core.windows.net/","file":"https://sqlvajr7kop6qeku2c.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/00thxm5itwdvzhiagntpri0","name":"00thxm5itwdvzhiagntpri0","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.4243777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.3775044Z","primaryEndpoints":{"blob":"https://00thxm5itwdvzhiagntpri0.blob.core.windows.net/","queue":"https://00thxm5itwdvzhiagntpri0.queue.core.windows.net/","table":"https://00thxm5itwdvzhiagntpri0.table.core.windows.net/","file":"https://00thxm5itwdvzhiagntpri0.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/60thxm5itwdvzhiagntpri1","name":"60thxm5itwdvzhiagntpri1","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:50.8462076Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:50.7837082Z","primaryEndpoints":{"blob":"https://60thxm5itwdvzhiagntpri1.blob.core.windows.net/","queue":"https://60thxm5itwdvzhiagntpri1.queue.core.windows.net/","table":"https://60thxm5itwdvzhiagntpri1.table.core.windows.net/","file":"https://60thxm5itwdvzhiagntpri1.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Storage/storageAccounts/muguntest","name":"muguntest","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T23:43:12.6537540Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2019-06-11T23:43:12.5756279Z","primaryEndpoints":{"blob":"https://muguntest.blob.core.windows.net/","queue":"https://muguntest.queue.core.windows.net/","table":"https://muguntest.table.core.windows.net/","file":"https://muguntest.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/o0thxm5itwdvzhiagntpri4","name":"o0thxm5itwdvzhiagntpri4","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.8931231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.8462474Z","primaryEndpoints":{"blob":"https://o0thxm5itwdvzhiagntpri4.blob.core.windows.net/","queue":"https://o0thxm5itwdvzhiagntpri4.queue.core.windows.net/","table":"https://o0thxm5itwdvzhiagntpri4.table.core.windows.net/","file":"https://o0thxm5itwdvzhiagntpri4.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsink8s1/providers/Microsoft.Storage/storageAccounts/thxm5itwdvzhiagntpub","name":"thxm5itwdvzhiagntpub","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-07-11T23:58:48.2056719Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-07-11T23:58:48.1587607Z","primaryEndpoints":{"blob":"https://thxm5itwdvzhiagntpub.blob.core.windows.net/","queue":"https://thxm5itwdvzhiagntpub.queue.core.windows.net/","table":"https://thxm5itwdvzhiagntpub.table.core.windows.net/","file":"https://thxm5itwdvzhiagntpub.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-FranceCentral/providers/Microsoft.Storage/storageAccounts/shishudesktopc5k9obr","name":"shishudesktopc5k9obr","type":"Microsoft.Storage/storageAccounts","location":"francecentral","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-05T02:17:13.4152280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-05T02:17:13.3527575Z","primaryEndpoints":{"blob":"https://shishudesktopc5k9obr.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr.queue.core.windows.net/","table":"https://shishudesktopc5k9obr.table.core.windows.net/","file":"https://shishudesktopc5k9obr.file.core.windows.net/"},"primaryLocation":"francecentral","statusOfPrimary":"available","secondaryLocation":"francesouth","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://shishudesktopc5k9obr-secondary.blob.core.windows.net/","queue":"https://shishudesktopc5k9obr-secondary.queue.core.windows.net/","table":"https://shishudesktopc5k9obr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Storage/storageAccounts/magaopsmontest","name":"magaopsmontest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-31T18:13:44.9035139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-07-31T18:13:44.8566366Z","primaryEndpoints":{"blob":"https://magaopsmontest.blob.core.windows.net/","queue":"https://magaopsmontest.queue.core.windows.net/","table":"https://magaopsmontest.table.core.windows.net/","file":"https://magaopsmontest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://magaopsmontest-secondary.blob.core.windows.net/","queue":"https://magaopsmontest-secondary.queue.core.windows.net/","table":"https://magaopsmontest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mchaiaz/providers/Microsoft.Storage/storageAccounts/mchaizrs","name":"mchaizrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-18T23:29:18.2417832Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-18T23:29:18.2105166Z","primaryEndpoints":{"blob":"https://mchaizrs.blob.core.windows.net/","queue":"https://mchaizrs.queue.core.windows.net/","table":"https://mchaizrs.table.core.windows.net/","file":"https://mchaizrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '297388' + - '276530' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:44:35 GMT + - Tue, 16 Jun 2020 21:31:38 GMT expires: - '-1' pragma: @@ -44,19 +44,19 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ae3866d0-2b47-4744-91f7-d805031e9f5c - - 9519aac1-6189-4a7d-a877-9fcd89443db4 - - 4e557663-23d0-4b31-add3-e5c718789b2d - - f17b854c-699e-4d23-84bb-100720b5b28b - - c7ce79cf-5761-4f1b-b0f6-e9b68645b270 - - 528e2ce5-9fde-4fb6-a9f1-4705c0c6a0d6 - - e2f72be0-d382-40fe-b25e-da5fed643c40 - - 389e1bc6-7385-4cf9-beeb-f4d8b3b74149 - - c3aaa7af-0e4b-4c1c-9fe2-3f6e5f3c7e7d - - 8d4a89ae-a329-412b-971c-381094308819 - - 9f027dfe-adaf-45d8-866b-aa760463f9e0 - - a0ecf594-684b-4417-82af-957ddd90456c - - 5f775a8f-af6b-4fea-80a1-d0c572dab350 + - 86f1468d-189b-42ee-8145-e08f11bddff1 + - d109894a-499d-48c7-a1f2-9c46032a7e86 + - 7512cf2f-a9df-4076-87ca-e46a42dc9cbd + - 2e6c1294-b2d9-4579-8802-9ea865cdfa6a + - ab910f83-cf6f-4635-bdab-1e62dc28793b + - 229b4a22-410e-4b56-8ee1-c55d35c216d1 + - e4efb9d3-d78f-414e-b415-a3df05d8d81c + - d557f8f2-c738-4020-a2d5-4b771be7eac5 + - 854e63f4-a903-4f77-8b5a-f3d9049c2983 + - 926ed269-bbf4-4d3b-b981-ebee475a4894 + - 74ebfd1b-77b2-48cc-ace7-e78bbf1bec8a + - 3b84dc1a-9a9c-4f0b-a380-eb29d8d17006 + - bf81df20-eaf5-4383-ba02-4c2de686b934 status: code: 200 message: OK @@ -81,7 +81,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2017-10-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -93,7 +93,7 @@ interactions: content-type: - application/json date: - - Sun, 14 Jun 2020 17:44:35 GMT + - Tue, 16 Jun 2020 21:31:38 GMT expires: - '-1' pragma: @@ -121,11 +121,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.3; Windows 10) AZURECLI/2.7.0 + - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.8.3; Windows 10) AZURECLI/2.7.0 x-ms-date: - - Sun, 14 Jun 2020 17:44:36 GMT + - Tue, 16 Jun 2020 21:31:38 GMT x-ms-version: - - '2018-11-09' + - '2017-11-09' method: PUT uri: https://clitest000002.blob.core.windows.net/iothubcontainer2?restype=container response: @@ -135,15 +135,15 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:44:36 GMT + - Tue, 16 Jun 2020 21:31:38 GMT etag: - - '"0x8D8108A9B333A23"' + - '"0x8D8123CA7538469"' last-modified: - - Sun, 14 Jun 2020 17:44:36 GMT + - Tue, 16 Jun 2020 21:31:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2018-11-09' + - '2017-11-09' status: code: 201 message: Created @@ -168,7 +168,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2017-10-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -180,7 +180,7 @@ interactions: content-type: - application/json date: - - Sun, 14 Jun 2020 17:44:37 GMT + - Tue, 16 Jun 2020 21:31:38 GMT expires: - '-1' pragma: @@ -219,19 +219,19 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-14T17:44:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-16T21:31:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '385' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:44:37 GMT + - Tue, 16 Jun 2020 21:31:39 GMT expires: - '-1' pragma: @@ -272,25 +272,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:44:39.27Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-16T21:31:40.683Z","updatedAt":"2020-06-16T21:31:40.683Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '761' + - '763' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:44:45 GMT + - Tue, 16 Jun 2020 21:31:45 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -325,25 +325,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:44:39.27Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-16T21:31:40.683Z","updatedAt":"2020-06-16T21:31:40.683Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '761' + - '763' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:14 GMT + - Tue, 16 Jun 2020 21:32:15 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -376,25 +376,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:45:32.9Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-16T21:31:40.683Z","updatedAt":"2020-06-16T21:32:33.417Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '758' + - '761' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:45 GMT + - Tue, 16 Jun 2020 21:32:45 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -429,25 +429,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2","name":"ehNamespaceiothubfortest2","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-14T17:44:39.27Z","updatedAt":"2020-06-14T17:45:32.9Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"91d12660-3dec-467a-be2a-213b5544ddc0:ehnamespaceiothubfortest2","createdAt":"2020-06-16T21:31:40.683Z","updatedAt":"2020-06-16T21:32:33.417Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest2.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '758' + - '761' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:45 GMT + - Tue, 16 Jun 2020 21:32:45 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -486,25 +486,25 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2/eventhubs/eventHubiothubfortest","name":"eventHubiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-06-14T17:45:47.717Z","updatedAt":"2020-06-14T17:45:48.017Z","partitionIds":["0","1","2","3"]}}' + US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2020-06-16T21:32:47.73Z","updatedAt":"2020-06-16T21:32:48.113Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '542' + - '541' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:48 GMT + - Tue, 16 Jun 2020 21:32:48 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 - 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: @@ -554,16 +554,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:48 GMT + - Tue, 16 Jun 2020 21:32:49 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - 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: @@ -601,7 +601,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest2/eventhubs/eventHubiothubfortest/authorizationRules/eventHubPolicyiothubfortest/ListKeys?api-version=2017-04-01 response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=uKFHO5H5KYqv4pdSA+nAiCfj/rk0NplybBnQSKrNsI0=;EntityPath=eventHubiothubfortest","primaryKey":"jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=","secondaryKey":"uKFHO5H5KYqv4pdSA+nAiCfj/rk0NplybBnQSKrNsI0=","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=cVik9lF5rxgFilkB+X58hjCf8ItmBJLlsBGld8qhwIc=;EntityPath=eventHubiothubfortest","primaryKey":"HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=","secondaryKey":"cVik9lF5rxgFilkB+X58hjCf8ItmBJLlsBGld8qhwIc=","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache @@ -610,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:50 GMT + - Tue, 16 Jun 2020 21:32:49 GMT expires: - '-1' pragma: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -658,7 +658,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":true,"reason":"Invalid","message":null}' @@ -670,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:51 GMT + - Tue, 16 Jun 2020 21:32:50 GMT expires: - '-1' pragma: @@ -686,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -711,19 +711,19 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-14T17:44:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-06-16T21:31:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '429' + - '385' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:45:51 GMT + - Tue, 16 Jun 2020 21:32:50 GMT expires: - '-1' pragma: @@ -768,13 +768,13 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY5Mjg4NGItZGQzYS00N2Q4LTk3YzctNzY1ODAwNzI2ZGE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -782,7 +782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:46:04 GMT + - Tue, 16 Jun 2020 21:33:05 GMT expires: - '-1' pragma: @@ -817,7 +817,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY5Mjg4NGItZGQzYS00N2Q4LTk3YzctNzY1ODAwNzI2ZGE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -829,7 +829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:46:35 GMT + - Tue, 16 Jun 2020 21:33:35 GMT expires: - '-1' pragma: @@ -866,7 +866,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY5Mjg4NGItZGQzYS00N2Q4LTk3YzctNzY1ODAwNzI2ZGE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -878,7 +878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:47:05 GMT + - Tue, 16 Jun 2020 21:34:05 GMT expires: - '-1' pragma: @@ -915,7 +915,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY5Mjg4NGItZGQzYS00N2Q4LTk3YzctNzY1ODAwNzI2ZGE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -927,7 +927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:47:35 GMT + - Tue, 16 Jun 2020 21:34:35 GMT expires: - '-1' pragma: @@ -964,56 +964,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 14 Jun 2020 17:48: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-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot hub create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --partition-count --retention-day --c2d-ttl --c2d-max-delivery-count - --feedback-ttl --feedback-lock-duration --feedback-max-delivery-count --fileupload-notification-max-delivery-count - --fileupload-notification-ttl - User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 - Azure-SDK-For-Python AZURECLI/2.7.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYzRmNWVmMGMtYzdkYS00N2FjLTlhNzUtYTA5ZDhmY2I0YWQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGY5Mjg4NGItZGQzYS00N2Q4LTk3YzctNzY1ODAwNzI2ZGE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1025,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:48:36 GMT + - Tue, 16 Jun 2020 21:35:06 GMT expires: - '-1' pragma: @@ -1062,11 +1013,11 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1075,7 +1026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:48:37 GMT + - Tue, 16 Jun 2020 21:35:06 GMT expires: - '-1' pragma: @@ -1112,13 +1063,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -1130,35 +1081,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -1166,70 +1117,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:48:49 GMT + - Tue, 16 Jun 2020 21:35:19 GMT expires: - '-1' pragma: @@ -1268,10 +1223,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1281,7 +1236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:48:49 GMT + - Tue, 16 Jun 2020 21:35:19 GMT expires: - '-1' pragma: @@ -1320,13 +1275,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -1338,35 +1293,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -1374,70 +1329,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:00 GMT + - Tue, 16 Jun 2020 21:35:30 GMT expires: - '-1' pragma: @@ -1476,10 +1435,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/iothubowner/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, + string: '{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -1489,7 +1448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:00 GMT + - Tue, 16 Jun 2020 21:35:31 GMT expires: - '-1' pragma: @@ -1505,7 +1464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1528,13 +1487,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -1546,35 +1505,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -1582,70 +1541,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:11 GMT + - Tue, 16 Jun 2020 21:35:42 GMT expires: - '-1' pragma: @@ -1684,11 +1647,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -1697,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:12 GMT + - Tue, 16 Jun 2020 21:35:43 GMT expires: - '-1' pragma: @@ -1736,13 +1699,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -1754,35 +1717,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -1790,70 +1753,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:24 GMT + - Tue, 16 Jun 2020 21:35:54 GMT expires: - '-1' pragma: @@ -1890,13 +1857,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -1908,35 +1875,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -1944,70 +1911,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:35 GMT + - Tue, 16 Jun 2020 21:36:05 GMT expires: - '-1' pragma: @@ -2044,13 +2015,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -2062,35 +2033,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -2098,70 +2069,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141580' + - '140695' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:46 GMT + - Tue, 16 Jun 2020 21:36:17 GMT expires: - '-1' pragma: @@ -2180,7 +2155,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDo5Y4=", "properties": + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABLhXg8=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -2207,7 +2182,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDo5Y4=''}' + - '{''IF-MATCH'': ''AAAAABLhXg8=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc User-Agent: @@ -2216,18 +2191,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDo5Y4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:48:04 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:48:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhXg8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:34:58 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:34:58 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:34:58 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:34:58 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:34:58 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:34:58 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:34:58 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:34:58 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWU1N2I0NDgtMTVkYi00OWVjLWE3NTMtOTYzMDBlZTNkNzhh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJmM2E1MGUtM2FiYy00MWNlLTlhZGItY2RiYmJmNDM0Y2Q4?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -2235,7 +2210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:49:48 GMT + - Tue, 16 Jun 2020 21:36:19 GMT expires: - '-1' pragma: @@ -2247,7 +2222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -2268,7 +2243,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWU1N2I0NDgtMTVkYi00OWVjLWE3NTMtOTYzMDBlZTNkNzhh?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMGJmM2E1MGUtM2FiYy00MWNlLTlhZGItY2RiYmJmNDM0Y2Q4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2280,7 +2255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:19 GMT + - Tue, 16 Jun 2020 21:36:50 GMT expires: - '-1' pragma: @@ -2315,20 +2290,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:20 GMT + - Tue, 16 Jun 2020 21:36:50 GMT expires: - '-1' pragma: @@ -2365,13 +2340,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -2383,35 +2358,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -2419,70 +2394,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:31 GMT + - Tue, 16 Jun 2020 21:37:02 GMT expires: - '-1' pragma: @@ -2519,20 +2498,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '1877' + - '1815' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:32 GMT + - Tue, 16 Jun 2020 21:37:03 GMT expires: - '-1' pragma: @@ -2569,13 +2548,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -2587,35 +2566,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -2623,70 +2602,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:44 GMT + - Tue, 16 Jun 2020 21:37:14 GMT expires: - '-1' pragma: @@ -2723,7 +2706,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/skus?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/skus?api-version=2019-03-22 response: body: string: '{"value":[{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S1","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S2","tier":"Standard"},"capacity":{"minimum":1,"maximum":200,"default":1,"scaleType":"Manual"}},{"resourceType":"Microsoft.Devices/IotHubs","sku":{"name":"S3","tier":"Standard"},"capacity":{"minimum":1,"maximum":10,"default":1,"scaleType":"Manual"}}]}' @@ -2735,7 +2718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:44 GMT + - Tue, 16 Jun 2020 21:37:14 GMT expires: - '-1' pragma: @@ -2772,13 +2755,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -2790,35 +2773,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -2826,70 +2809,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:55 GMT + - Tue, 16 Jun 2020 21:37:26 GMT expires: - '-1' pragma: @@ -2928,11 +2915,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -2941,7 +2928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:55 GMT + - Tue, 16 Jun 2020 21:37:27 GMT expires: - '-1' pragma: @@ -2962,17 +2949,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpE0o=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", - "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", - "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", - "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", - "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", - "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABLhm2c=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=", + "secondaryKey": "soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=", + "secondaryKey": "k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=", + "secondaryKey": "X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=", + "secondaryKey": "sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=", + "secondaryKey": "BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=", "rights": "RegistryWrite"}, {"keyName": "test_policy", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], @@ -3000,7 +2987,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDpE0o=''}' + - '{''IF-MATCH'': ''AAAAABLhm2c=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: @@ -3009,19 +2996,19 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpE0o=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:49:59 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:49:59 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhm2c=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"qTZtqyewhx4+SJ/WODONd98TUdU/pfImWicgFZejNNA=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:36:33 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:36:33 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:36:33 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:36:33 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:36:33 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:36:33 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:36:33 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:36:33 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4YTQ0ODctOWY5NC00ODQxLTlkNjItMDAwMjBjYmJiMGYy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjAwOGQ2YjYtMWExNS00MzQ3LThjMDAtMDAzNzE5OTdjMDVk?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3029,7 +3016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:50:58 GMT + - Tue, 16 Jun 2020 21:37:29 GMT expires: - '-1' pragma: @@ -3062,7 +3049,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMmM4YTQ0ODctOWY5NC00ODQxLTlkNjItMDAwMjBjYmJiMGYy?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjAwOGQ2YjYtMWExNS00MzQ3LThjMDAtMDAzNzE5OTdjMDVk?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3074,7 +3061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:29 GMT + - Tue, 16 Jun 2020 21:37:59 GMT expires: - '-1' pragma: @@ -3109,20 +3096,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhnbU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:29 GMT + - Tue, 16 Jun 2020 21:37:59 GMT expires: - '-1' pragma: @@ -3159,13 +3146,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -3177,35 +3164,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -3213,70 +3200,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhnbU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:42 GMT + - Tue, 16 Jun 2020 21:38:12 GMT expires: - '-1' pragma: @@ -3315,11 +3306,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"qTZtqyewhx4+SJ/WODONd98TUdU/pfImWicgFZejNNA=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3329,7 +3320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:42 GMT + - Tue, 16 Jun 2020 21:38:12 GMT expires: - '-1' pragma: @@ -3368,13 +3359,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -3386,35 +3377,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -3422,70 +3413,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhnbU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:53 GMT + - Tue, 16 Jun 2020 21:38:24 GMT expires: - '-1' pragma: @@ -3524,10 +3519,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"qTZtqyewhx4+SJ/WODONd98TUdU/pfImWicgFZejNNA=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -3537,7 +3532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:51:54 GMT + - Tue, 16 Jun 2020 21:38:24 GMT expires: - '-1' pragma: @@ -3576,13 +3571,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -3594,35 +3589,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -3630,70 +3625,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhnbU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:05 GMT + - Tue, 16 Jun 2020 21:38:36 GMT expires: - '-1' pragma: @@ -3732,11 +3731,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"qTZtqyewhx4+SJ/WODONd98TUdU/pfImWicgFZejNNA=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -3746,7 +3745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:06 GMT + - Tue, 16 Jun 2020 21:38:36 GMT expires: - '-1' pragma: @@ -3767,19 +3766,19 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpRnk=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", - "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", - "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", - "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", - "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", - "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=", - "secondaryKey": "OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=", "rights": "RegistryWrite, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABLhnbU=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=", + "secondaryKey": "soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=", + "secondaryKey": "k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=", + "secondaryKey": "X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=", + "secondaryKey": "sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=", + "secondaryKey": "BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=", + "secondaryKey": "NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -3806,7 +3805,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDpRnk=''}' + - '{''IF-MATCH'': ''AAAAABLhnbU=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -3815,20 +3814,20 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpRnk=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"},{"KeyName":"test_policy","PrimaryKey":"9CddlTnNgcQBQ8nMYTZCoYMJgzvIpvORf4uYWB9vULw=","SecondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:51:11 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:51:11 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLhnbU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:37:42 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:37:42 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:37:42 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:37:42 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:37:42 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:37:42 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:37:42 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:37:42 GMT"},{"KeyName":"test_policy","PrimaryKey":"qTZtqyewhx4+SJ/WODONd98TUdU/pfImWicgFZejNNA=","SecondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:37:42 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:37:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2NTIxYzItOWNkZC00MmI1LTkxMzAtNmNmNjU4OWQ5ZDE4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTBkMDE2OWQtOTQyMy00NDc0LTgzMjItN2ExMzA2OWZiMDNh?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -3836,7 +3835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:08 GMT + - Tue, 16 Jun 2020 21:38:38 GMT expires: - '-1' pragma: @@ -3869,7 +3868,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA2NTIxYzItOWNkZC00MmI1LTkxMzAtNmNmNjU4OWQ5ZDE4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOTBkMDE2OWQtOTQyMy00NDc0LTgzMjItN2ExMzA2OWZiMDNh?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3881,7 +3880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:39 GMT + - Tue, 16 Jun 2020 21:39:09 GMT expires: - '-1' pragma: @@ -3916,20 +3915,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:39 GMT + - Tue, 16 Jun 2020 21:39:09 GMT expires: - '-1' pragma: @@ -3966,13 +3965,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -3984,35 +3983,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -4020,70 +4019,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:51 GMT + - Tue, 16 Jun 2020 21:39:22 GMT expires: - '-1' pragma: @@ -4122,10 +4125,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -4135,7 +4138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:52:51 GMT + - Tue, 16 Jun 2020 21:39:22 GMT expires: - '-1' pragma: @@ -4174,13 +4177,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -4192,35 +4195,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -4228,70 +4231,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:03 GMT + - Tue, 16 Jun 2020 21:39:33 GMT expires: - '-1' pragma: @@ -4330,10 +4337,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -4343,7 +4350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:03 GMT + - Tue, 16 Jun 2020 21:39:33 GMT expires: - '-1' pragma: @@ -4382,13 +4389,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -4400,35 +4407,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -4436,70 +4443,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:14 GMT + - Tue, 16 Jun 2020 21:39:44 GMT expires: - '-1' pragma: @@ -4536,13 +4547,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -4554,35 +4565,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -4590,70 +4601,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:25 GMT + - Tue, 16 Jun 2020 21:39:56 GMT expires: - '-1' pragma: @@ -4692,11 +4707,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","secondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","secondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -4706,7 +4721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:26 GMT + - Tue, 16 Jun 2020 21:39:56 GMT expires: - '-1' pragma: @@ -4727,19 +4742,19 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpbBU=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", - "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", - "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", - "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", - "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", - "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}, - {"keyName": "test_policy", "primaryKey": "OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=", - "secondaryKey": "HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=", "rights": "RegistryWrite, + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABLh9tY=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=", + "secondaryKey": "soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=", + "secondaryKey": "k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=", + "secondaryKey": "X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=", + "secondaryKey": "sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=", + "secondaryKey": "BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=", "rights": "RegistryWrite"}, + {"keyName": "test_policy", "primaryKey": "NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=", + "secondaryKey": "Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": @@ -4766,7 +4781,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDpbBU=''}' + - '{''IF-MATCH'': ''AAAAABLh9tY=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -4775,20 +4790,20 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpbBU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"},{"KeyName":"test_policy","PrimaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","SecondaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:52:20 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:52:20 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLh9tY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","secondaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:38:54 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:38:54 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:38:54 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:38:54 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:38:54 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:38:54 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:38:54 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:38:54 GMT"},{"KeyName":"test_policy","PrimaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","SecondaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:38:54 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:38:54 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWYyMmQxYjUtZWM2Zi00NzE1LTk1NzItODhlNjMxNTUxYTZj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE1ZjAwZWEtZTYzMy00NGRlLTk3ZDQtMGM5ODA0ZjM2OWFh?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -4796,7 +4811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:28 GMT + - Tue, 16 Jun 2020 21:39:58 GMT expires: - '-1' pragma: @@ -4829,7 +4844,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYWYyMmQxYjUtZWM2Zi00NzE1LTk1NzItODhlNjMxNTUxYTZj?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNTE1ZjAwZWEtZTYzMy00NGRlLTk3ZDQtMGM5ODA0ZjM2OWFh?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4841,7 +4856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:58 GMT + - Tue, 16 Jun 2020 21:40:29 GMT expires: - '-1' pragma: @@ -4876,20 +4891,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifM4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:53:59 GMT + - Tue, 16 Jun 2020 21:40:30 GMT expires: - '-1' pragma: @@ -4926,13 +4941,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -4944,35 +4959,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -4980,70 +4995,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifM4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:11 GMT + - Tue, 16 Jun 2020 21:40:42 GMT expires: - '-1' pragma: @@ -5082,10 +5101,10 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubKeys/test_policy/listkeys?api-version=2019-03-22 response: body: - string: '{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, + string: '{"keyName":"test_policy","primaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","secondaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}' headers: cache-control: @@ -5095,7 +5114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:11 GMT + - Tue, 16 Jun 2020 21:40:43 GMT expires: - '-1' pragma: @@ -5134,13 +5153,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -5152,35 +5171,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -5188,70 +5207,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifM4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:22 GMT + - Tue, 16 Jun 2020 21:40:54 GMT expires: - '-1' pragma: @@ -5290,11 +5313,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","secondaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -5304,7 +5327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:22 GMT + - Tue, 16 Jun 2020 21:40:54 GMT expires: - '-1' pragma: @@ -5345,11 +5368,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","secondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","rights":"RegistryWrite, + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"},{"keyName":"test_policy","primaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","secondaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","rights":"RegistryWrite, ServiceConnect, DeviceConnect"}]}' headers: cache-control: @@ -5359,7 +5382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:23 GMT + - Tue, 16 Jun 2020 21:40:55 GMT expires: - '-1' pragma: @@ -5380,17 +5403,17 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABDpjks=", "properties": - {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=", - "secondaryKey": "7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=", "rights": "RegistryWrite, - ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=", - "secondaryKey": "qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=", "rights": "ServiceConnect"}, - {"keyName": "device", "primaryKey": "BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=", - "secondaryKey": "dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=", "rights": "DeviceConnect"}, - {"keyName": "registryRead", "primaryKey": "O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=", - "secondaryKey": "cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=", "rights": "RegistryRead"}, - {"keyName": "registryReadWrite", "primaryKey": "/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=", - "secondaryKey": "On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=", "rights": "RegistryWrite"}], + body: 'b''{"location": "westus2", "tags": {}, "etag": "AAAAABLifM4=", "properties": + {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey": "j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=", + "secondaryKey": "soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=", "rights": "RegistryWrite, + ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey": "B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=", + "secondaryKey": "k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=", "rights": "ServiceConnect"}, + {"keyName": "device", "primaryKey": "p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=", + "secondaryKey": "X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=", "rights": "DeviceConnect"}, + {"keyName": "registryRead", "primaryKey": "tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=", + "secondaryKey": "sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=", "rights": "RegistryRead"}, + {"keyName": "registryReadWrite", "primaryKey": "+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=", + "secondaryKey": "BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=", "rights": "RegistryWrite"}], "ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": @@ -5417,7 +5440,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDpjks=''}' + - '{''IF-MATCH'': ''AAAAABLifM4=''}' ParameterSetName: - --hub-name -n User-Agent: @@ -5426,19 +5449,19 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpjks=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"},{"KeyName":"test_policy","PrimaryKey":"OQEbsehuh1xMgiFII17oKIlujuSrm1jL48pxv5gIQUw=","SecondaryKey":"HnA7OyFwTDhOJBA/YDgSSGwTfitrcR4DG0FCEWovfAo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:53:40 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:53:40 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifM4=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:40:19 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:40:19 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:40:19 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:40:19 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:40:19 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:40:19 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:40:19 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:40:19 GMT"},{"KeyName":"test_policy","PrimaryKey":"NdYH7OA9oOuMr0+kREMXl/SlmWq04OS/7o7pTvOIRww=","SecondaryKey":"Pnh8DnpsQnprI04XJXBEHS4RHUhEfEpIByNuFFUlaxE=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:40:19 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:40:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWQ0NzZlMDMtYTM1YS00Yzc3LWFkN2QtZjVhYTg0N2Q0OGU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjkzNWYwOTMtNzcxMS00MDk3LTk0ZTItOWE4NTU1ZmI3MWI0?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -5446,7 +5469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:25 GMT + - Tue, 16 Jun 2020 21:40:57 GMT expires: - '-1' pragma: @@ -5479,7 +5502,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWQ0NzZlMDMtYTM1YS00Yzc3LWFkN2QtZjVhYTg0N2Q0OGU3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNjkzNWYwOTMtNzcxMS00MDk3LTk0ZTItOWE4NTU1ZmI3MWI0?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5491,7 +5514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:56 GMT + - Tue, 16 Jun 2020 21:41:27 GMT expires: - '-1' pragma: @@ -5526,20 +5549,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:54:56 GMT + - Tue, 16 Jun 2020 21:41:28 GMT expires: - '-1' pragma: @@ -5576,13 +5599,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -5594,35 +5617,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -5630,70 +5653,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:09 GMT + - Tue, 16 Jun 2020 21:41:40 GMT expires: - '-1' pragma: @@ -5732,11 +5759,11 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/listkeys?api-version=2019-03-22 response: body: - string: '{"value":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}]}' + string: '{"value":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}]}' headers: cache-control: - no-cache @@ -5745,7 +5772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:09 GMT + - Tue, 16 Jun 2020 21:41:41 GMT expires: - '-1' pragma: @@ -5784,13 +5811,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -5802,35 +5829,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -5838,70 +5865,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:20 GMT + - Tue, 16 Jun 2020 21:41:52 GMT expires: - '-1' pragma: @@ -5940,10 +5971,10 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 response: body: - string: '{"properties":{"created":"Sun, 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Tue, 16 Jun 2020 21:41:54 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -5952,7 +5983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:22 GMT + - Tue, 16 Jun 2020 21:41:54 GMT expires: - '-1' pragma: @@ -5991,13 +6022,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -6009,35 +6040,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -6045,70 +6076,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:34 GMT + - Tue, 16 Jun 2020 21:42:05 GMT expires: - '-1' pragma: @@ -6145,10 +6180,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 response: body: - string: '{"properties":{"created":"Sun, 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Tue, 16 Jun 2020 21:41:54 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -6157,7 +6192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:34 GMT + - Tue, 16 Jun 2020 21:42:06 GMT expires: - '-1' pragma: @@ -6194,13 +6229,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -6212,35 +6247,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -6248,70 +6283,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:47 GMT + - Tue, 16 Jun 2020 21:42:19 GMT expires: - '-1' pragma: @@ -6348,11 +6387,11 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22 response: body: - string: '{"value":[{"properties":{"created":"Sun, 14 Jun 2020 17:47:56 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Sun, - 14 Jun 2020 17:55:22 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Tue, 16 Jun 2020 21:34:50 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Tue, + 16 Jun 2020 21:41:54 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -6361,7 +6400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:47 GMT + - Tue, 16 Jun 2020 21:42:19 GMT expires: - '-1' pragma: @@ -6398,13 +6437,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -6416,35 +6455,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -6452,70 +6491,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:55:58 GMT + - Tue, 16 Jun 2020 21:42:32 GMT expires: - '-1' pragma: @@ -6554,7 +6597,7 @@ interactions: accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2019-03-22 response: body: string: '' @@ -6564,7 +6607,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:55:58 GMT + - Tue, 16 Jun 2020 21:42:32 GMT expires: - '-1' pragma: @@ -6599,13 +6642,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -6617,35 +6660,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -6653,70 +6696,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:10 GMT + - Tue, 16 Jun 2020 21:42:43 GMT expires: - '-1' pragma: @@ -6753,10 +6800,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups?api-version=2019-03-22 response: body: - string: '{"value":[{"properties":{"created":"Sun, 14 Jun 2020 17:47:56 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Tue, 16 Jun 2020 21:34:50 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -6765,7 +6812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:10 GMT + - Tue, 16 Jun 2020 21:42:44 GMT expires: - '-1' pragma: @@ -6802,13 +6849,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -6820,35 +6867,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -6856,70 +6903,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:21 GMT + - Tue, 16 Jun 2020 21:42:55 GMT expires: - '-1' pragma: @@ -6956,7 +7007,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/quotaMetrics?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/quotaMetrics?api-version=2019-03-22 response: body: string: '{"value":[{"name":"TotalMessages","currentValue":0,"maxValue":400000},{"name":"TotalDeviceCount","currentValue":0,"maxValue":1000000}]}' @@ -6968,7 +7019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:22 GMT + - Tue, 16 Jun 2020 21:42:55 GMT expires: - '-1' pragma: @@ -7005,13 +7056,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -7023,35 +7074,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -7059,70 +7110,74 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '141776' + - '140829' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:33 GMT + - Tue, 16 Jun 2020 21:43:07 GMT expires: - '-1' pragma: @@ -7159,7 +7214,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubStats?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/IotHubStats?api-version=2019-03-22 response: body: string: '{"totalDeviceCount":0,"enabledDeviceCount":0,"disabledDeviceCount":0}' @@ -7171,7 +7226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:34 GMT + - Tue, 16 Jun 2020 21:43:08 GMT expires: - '-1' pragma: @@ -7208,7 +7263,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -7218,7 +7273,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:56:34 GMT + - Tue, 16 Jun 2020 21:43:08 GMT expires: - '-1' pragma: @@ -7253,7 +7308,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7266,7 +7321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:35 GMT + - Tue, 16 Jun 2020 21:43:09 GMT expires: - '-1' pragma: @@ -7305,20 +7360,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1865' + - '1803' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:35 GMT + - Tue, 16 Jun 2020 21:43:09 GMT expires: - '-1' pragma: @@ -7337,10 +7392,10 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDpsIA=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLifiA=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": @@ -7366,7 +7421,7 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDpsIA=''}' + - '{''IF-MATCH'': ''AAAAABLifiA=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: @@ -7375,18 +7430,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDpsIA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:54:37 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:54:37 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLifiA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:41:12 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:41:12 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:41:12 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:41:12 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:41:12 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:41:12 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:41:12 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:41:12 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA0MmJkOGMtNDM3MC00NDY5LTg2ZWMtYzA4NjI4ZjhlMTEw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWY5MzQ1MTctNDY2OC00YTI4LWE1MzYtNzM4Y2IwZWI3NDZj?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -7394,7 +7449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:56:37 GMT + - Tue, 16 Jun 2020 21:43:13 GMT expires: - '-1' pragma: @@ -7427,7 +7482,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNDA0MmJkOGMtNDM3MC00NDY5LTg2ZWMtYzA4NjI4ZjhlMTEw?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWY5MzQ1MTctNDY2OC00YTI4LWE1MzYtNzM4Y2IwZWI3NDZj?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7439,7 +7494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:08 GMT + - Tue, 16 Jun 2020 21:43:43 GMT expires: - '-1' pragma: @@ -7474,20 +7529,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2268' + - '2206' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:08 GMT + - Tue, 16 Jun 2020 21:43:44 GMT expires: - '-1' pragma: @@ -7524,7 +7579,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -7534,7 +7589,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:57:10 GMT + - Tue, 16 Jun 2020 21:43:44 GMT expires: - '-1' pragma: @@ -7569,7 +7624,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7582,7 +7637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:11 GMT + - Tue, 16 Jun 2020 21:43:45 GMT expires: - '-1' pragma: @@ -7598,7 +7653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -7621,20 +7676,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2268' + - '2206' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:11 GMT + - Tue, 16 Jun 2020 21:43:46 GMT expires: - '-1' pragma: @@ -7671,7 +7726,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -7681,7 +7736,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:57:11 GMT + - Tue, 16 Jun 2020 21:43:46 GMT expires: - '-1' pragma: @@ -7716,7 +7771,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7729,7 +7784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:12 GMT + - Tue, 16 Jun 2020 21:43:47 GMT expires: - '-1' pragma: @@ -7768,20 +7823,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2268' + - '2206' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:12 GMT + - Tue, 16 Jun 2020 21:43:47 GMT expires: - '-1' pragma: @@ -7818,7 +7873,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -7828,7 +7883,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:57:13 GMT + - Tue, 16 Jun 2020 21:43:47 GMT expires: - '-1' pragma: @@ -7863,7 +7918,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7876,7 +7931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:13 GMT + - Tue, 16 Jun 2020 21:43:48 GMT expires: - '-1' pragma: @@ -7892,7 +7947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -7915,20 +7970,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2268' + - '2206' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:13 GMT + - Tue, 16 Jun 2020 21:43:48 GMT expires: - '-1' pragma: @@ -7965,7 +8020,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -7975,7 +8030,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:57:14 GMT + - Tue, 16 Jun 2020 21:43:49 GMT expires: - '-1' pragma: @@ -8010,7 +8065,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8023,7 +8078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:15 GMT + - Tue, 16 Jun 2020 21:43:49 GMT expires: - '-1' pragma: @@ -8062,20 +8117,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2268' + - '2206' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:15 GMT + - Tue, 16 Jun 2020 21:43:50 GMT expires: - '-1' pragma: @@ -8094,11 +8149,10 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqHyA=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLiyzU=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -8125,11 +8179,11 @@ interactions: Connection: - keep-alive Content-Length: - - '2090' + - '2044' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDqHyA=''}' + - '{''IF-MATCH'': ''AAAAABLiyzU=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: @@ -8138,18 +8192,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqHyA=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:56:48 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:56:48 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLiyzU=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:43:22 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:43:22 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:43:22 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:43:22 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:43:22 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:43:22 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:43:22 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:43:22 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzM5ZGIxNWMtNDg2OC00ZWY0LWIyYzUtZWVkYjIzYmVjOTA4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFjZjE5NTEtNzUzZC00NzU3LWEzNWYtZTcyNzk0MDU4ZWJl?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8157,7 +8211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:19 GMT + - Tue, 16 Jun 2020 21:43:52 GMT expires: - '-1' pragma: @@ -8190,7 +8244,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzM5ZGIxNWMtNDg2OC00ZWY0LWIyYzUtZWVkYjIzYmVjOTA4?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMWFjZjE5NTEtNzUzZC00NzU3LWEzNWYtZTcyNzk0MDU4ZWJl?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8202,7 +8256,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:49 GMT + - Tue, 16 Jun 2020 21:44:23 GMT expires: - '-1' pragma: @@ -8237,20 +8291,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjFtw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2800' + - '2738' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:49 GMT + - Tue, 16 Jun 2020 21:44:23 GMT expires: - '-1' pragma: @@ -8287,7 +8341,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -8297,7 +8351,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:57:51 GMT + - Tue, 16 Jun 2020 21:44:25 GMT expires: - '-1' pragma: @@ -8332,7 +8386,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8345,7 +8399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:51 GMT + - Tue, 16 Jun 2020 21:44:25 GMT expires: - '-1' pragma: @@ -8361,7 +8415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -8384,20 +8438,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjFtw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2800' + - '2738' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:52 GMT + - Tue, 16 Jun 2020 21:44:26 GMT expires: - '-1' pragma: @@ -8416,14 +8470,13 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqNS8=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLjFtw=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", - "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -8449,11 +8502,11 @@ interactions: Connection: - keep-alive Content-Length: - - '2167' + - '2075' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDqNS8=''}' + - '{''IF-MATCH'': ''AAAAABLjFtw=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: @@ -8462,18 +8515,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqNS8=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:57:28 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:57:28 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjFtw=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:44:04 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:44:04 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:44:04 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:44:04 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:44:04 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:44:04 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:44:04 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:44:04 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzI2NmQ5NjAtNzU5Mi00YzBlLWE3OGMtMGFlZDRlMTdjOThk?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -8481,7 +8534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:57:54 GMT + - Tue, 16 Jun 2020 21:44:28 GMT expires: - '-1' pragma: @@ -8493,7 +8546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4997' status: code: 201 message: Created @@ -8514,7 +8567,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzI2NmQ5NjAtNzU5Mi00YzBlLWE3OGMtMGFlZDRlMTdjOThk?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -8526,7 +8579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:25 GMT + - Tue, 16 Jun 2020 21:44:59 GMT expires: - '-1' pragma: @@ -8561,7 +8614,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2E0MjIxZDAtMDFlOC00MzQzLTk5ZmMtODVmOTllNGRjYjg3?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzI2NmQ5NjAtNzU5Mi00YzBlLWE3OGMtMGFlZDRlMTdjOThk?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8573,7 +8626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:55 GMT + - Tue, 16 Jun 2020 21:45:29 GMT expires: - '-1' pragma: @@ -8608,20 +8661,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:56 GMT + - Tue, 16 Jun 2020 21:45:30 GMT expires: - '-1' pragma: @@ -8658,7 +8711,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -8668,7 +8721,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:58:57 GMT + - Tue, 16 Jun 2020 21:45:30 GMT expires: - '-1' pragma: @@ -8703,7 +8756,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8716,7 +8769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:57 GMT + - Tue, 16 Jun 2020 21:45:31 GMT expires: - '-1' pragma: @@ -8732,7 +8785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -8755,20 +8808,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:58 GMT + - Tue, 16 Jun 2020 21:45:31 GMT expires: - '-1' pragma: @@ -8805,7 +8858,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -8815,7 +8868,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:58:58 GMT + - Tue, 16 Jun 2020 21:45:32 GMT expires: - '-1' pragma: @@ -8850,7 +8903,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8863,7 +8916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:59 GMT + - Tue, 16 Jun 2020 21:45:32 GMT expires: - '-1' pragma: @@ -8902,20 +8955,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:58:59 GMT + - Tue, 16 Jun 2020 21:45:33 GMT expires: - '-1' pragma: @@ -8952,7 +9005,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -8962,7 +9015,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:59:00 GMT + - Tue, 16 Jun 2020 21:45:34 GMT expires: - '-1' pragma: @@ -8997,7 +9050,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9010,7 +9063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:01 GMT + - Tue, 16 Jun 2020 21:45:34 GMT expires: - '-1' pragma: @@ -9049,20 +9102,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:01 GMT + - Tue, 16 Jun 2020 21:45:34 GMT expires: - '-1' pragma: @@ -9099,7 +9152,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -9109,7 +9162,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:59:02 GMT + - Tue, 16 Jun 2020 21:45:34 GMT expires: - '-1' pragma: @@ -9144,7 +9197,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9157,7 +9210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:02 GMT + - Tue, 16 Jun 2020 21:45:35 GMT expires: - '-1' pragma: @@ -9196,20 +9249,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:03 GMT + - Tue, 16 Jun 2020 21:45:36 GMT expires: - '-1' pragma: @@ -9251,7 +9304,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testnew?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testnew?api-version=2019-03-22 response: body: string: '{"result":"true"}' @@ -9263,7 +9316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:03 GMT + - Tue, 16 Jun 2020 21:45:37 GMT expires: - '-1' pragma: @@ -9306,7 +9359,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testall?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/routing/routes/$testall?api-version=2019-03-22 response: body: string: '{"routes":[{"properties":{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}}]}' @@ -9318,7 +9371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:04 GMT + - Tue, 16 Jun 2020 21:45:38 GMT expires: - '-1' pragma: @@ -9357,7 +9410,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -9367,7 +9420,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:59:04 GMT + - Tue, 16 Jun 2020 21:45:38 GMT expires: - '-1' pragma: @@ -9402,7 +9455,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9415,7 +9468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:04 GMT + - Tue, 16 Jun 2020 21:45:39 GMT expires: - '-1' pragma: @@ -9431,7 +9484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9454,20 +9507,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2906' + - '2844' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:05 GMT + - Tue, 16 Jun 2020 21:45:40 GMT expires: - '-1' pragma: @@ -9486,14 +9539,13 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqYVs=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLjNps=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", - "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -9519,11 +9571,11 @@ interactions: Connection: - keep-alive Content-Length: - - '2169' + - '2077' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDqYVs=''}' + - '{''IF-MATCH'': ''AAAAABLjNps=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -9532,18 +9584,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYVs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:58:44 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:58:44 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjNps=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:01 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:01 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:01 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:01 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:01 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:01 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:01 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:01 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Q5YjRiYTEtOTIxYi00MWJmLTk1ZWMtNzBmOWM0ZjIxZTc0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWUzNTY0ODEtZmFmNy00YzI3LTkzNWEtOWM5NDAyMjFkNmE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -9551,7 +9603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:07 GMT + - Tue, 16 Jun 2020 21:45:42 GMT expires: - '-1' pragma: @@ -9584,7 +9636,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfM2Q5YjRiYTEtOTIxYi00MWJmLTk1ZWMtNzBmOWM0ZjIxZTc0?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZWUzNTY0ODEtZmFmNy00YzI3LTkzNWEtOWM5NDAyMjFkNmE4?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9596,7 +9648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:39 GMT + - Tue, 16 Jun 2020 21:46:13 GMT expires: - '-1' pragma: @@ -9631,20 +9683,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjZ1g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2908' + - '2846' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:39 GMT + - Tue, 16 Jun 2020 21:46:14 GMT expires: - '-1' pragma: @@ -9681,7 +9733,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -9691,7 +9743,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 17:59:40 GMT + - Tue, 16 Jun 2020 21:46:14 GMT expires: - '-1' pragma: @@ -9726,7 +9778,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9739,7 +9791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:41 GMT + - Tue, 16 Jun 2020 21:46:15 GMT expires: - '-1' pragma: @@ -9755,7 +9807,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -9778,20 +9830,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjZ1g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["Event1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2908' + - '2846' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:42 GMT + - Tue, 16 Jun 2020 21:46:15 GMT expires: - '-1' pragma: @@ -9810,14 +9862,13 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqYcY=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLjZ1g=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [{"id": "82a2f112-85cc-403e-8d34-770c04abd79c", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", + "serviceBusTopics": [], "eventHubs": [{"connectionString": "Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest", "name": "Event1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", - "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -9841,11 +9892,11 @@ interactions: Connection: - keep-alive Content-Length: - - '2052' + - '1960' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDqYcY=''}' + - '{''IF-MATCH'': ''AAAAABLjZ1g=''}' ParameterSetName: - --hub-name -g User-Agent: @@ -9854,18 +9905,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqYcY=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:19 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=jMspX2ztzCQ+kGi4osYTw3gE4CoJO8U2csQvkQn6WbI=;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjZ1g=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:56 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:56 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:56 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:56 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:56 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:56 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:45:56 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:45:56 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=HvK0sFgeyedkLXDZzHDt1BGqXrXmOTWiLvVabbOHHKg=;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwYTllYzctZjU3Zi00N2VhLWE5NTgtMDY0NTk0YTBhY2Ux?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTUwODhiYmItMDUxYi00NDhiLWFiZWUtYjE5NTUyOWUzZTZm?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -9873,7 +9924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 17:59:44 GMT + - Tue, 16 Jun 2020 21:46:18 GMT expires: - '-1' pragma: @@ -9885,7 +9936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -9906,7 +9957,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfN2MwYTllYzctZjU3Zi00N2VhLWE5NTgtMDY0NTk0YTBhY2Ux?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMTUwODhiYmItMDUxYi00NDhiLWFiZWUtYjE5NTUyOWUzZTZm?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9918,7 +9969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:15 GMT + - Tue, 16 Jun 2020 21:46:48 GMT expires: - '-1' pragma: @@ -9953,20 +10004,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjahs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2800' + - '2738' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:15 GMT + - Tue, 16 Jun 2020 21:46:49 GMT expires: - '-1' pragma: @@ -10003,7 +10054,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -10013,7 +10064,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 18:00:17 GMT + - Tue, 16 Jun 2020 21:46:50 GMT expires: - '-1' pragma: @@ -10048,7 +10099,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10061,7 +10112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:17 GMT + - Tue, 16 Jun 2020 21:46:51 GMT expires: - '-1' pragma: @@ -10100,20 +10151,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"82a2f112-85cc-403e-8d34-770c04abd79c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjahs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest2.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest","name":"Event1","id":"96535081-47d1-4e87-90ac-326aa64caedb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2800' + - '2738' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:18 GMT + - Tue, 16 Jun 2020 21:46:51 GMT expires: - '-1' pragma: @@ -10132,11 +10183,11 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABDqblE=", "properties": + body: 'b''b\''{"location": "westus2", "tags": {}, "etag": "AAAAABLjahs=", "properties": {"ipFilterRules": [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], - "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"id": "b35f3c9f-2557-41a0-a041-35900da7af2b", - "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [{"connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "91d12660-3dec-467a-be2a-213b5544ddc0", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer2", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -10160,11 +10211,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1640' + - '1594' Content-Type: - application/json; charset=utf-8 If-Match: - - '{''IF-MATCH'': ''AAAAABDqblE=''}' + - '{''IF-MATCH'': ''AAAAABLjahs=''}' ParameterSetName: - --hub-name -g -n User-Agent: @@ -10173,18 +10224,18 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqblE=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","secondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","secondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"BL9QebtPtWTKsEUgZMo+2LaTg84UgYj5Vlmd7cgkvhY=","secondaryKey":"dQVzMGY10n8pdj12FK4hnZhobCUCQek4e4T4ECQC8BY=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"O5IFZ0+VKE2h3G/l2IWb9M1gA6iVjLxWJndKIvRKZYk=","secondaryKey":"cbMOUsZ4vAVe+Z/1BbkcAW+Pvm8z8ofCIVXX6ZKdEYI=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"/Mc9IhEULXRiILyz5GQflQJUErWBgaiwXjQiKWzzY8M=","secondaryKey":"On7melNH6zv0GDnBsMCq//25RLI4Ii7vLIqenEI7vDw=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-15b61e00-4396-42dd-b5ad-1e0c265e7832-iothub","PrimaryKey":"h/xGo9n4TEMKyPR9wJxfzt2Mljetev5q4qYR6US1YqU=","SecondaryKey":"lkAoQQcfFxjaRTwM9+1C+mDw/EMQDcniGN4EU48q3Xs=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"},{"KeyName":"owner-97e93fb7-9dfd-4f84-9504-f70e3ef4118f-iothub","PrimaryKey":"l9HrqWUdo9kozwLcoKB9TwnuCVBr+/ydoBwh/Jiw1mY=","SecondaryKey":"xSAWAlP2x1rVhUJXETAk1jKbxlOaDXDjgiaMj2rahbo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"8wUJiflVus54p2V0gQPg9i2nsz9v21rjfFqjpoSnOY0=","SecondaryKey":"7soZm/6w3tn1I888Hm2e94IaARnjKXupkLFLr5sh8Kk=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"},{"KeyName":"service","PrimaryKey":"u+DEcBneZSpOPyb+8RlXYjZJrq4BiV1yGnpxSoPUMhg=","SecondaryKey":"qMb+NIYNxmjiyjEa4CxPRv+NZ97gLEJSj9wO45HmxAM=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Sun, - 14 Jun 2020 17:59:52 GMT","ModifiedTime":"Sun, 14 Jun 2020 17:59:52 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjahs=","properties":{"operationsMonitoringProperties":{"events":{"None":"None","Connections":"None","DeviceTelemetry":"None","C2DCommands":"None","DeviceIdentityOperations":"None","FileUploadOperations":"None","Routes":"None"}},"provisioningState":"Accepted","authorizationPolicies":[{"keyName":"iothubowner","primaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","secondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"},{"keyName":"service","primaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","secondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","rights":"ServiceConnect"},{"keyName":"device","primaryKey":"p45gIaNvxLz1u1JxxC0vCIDnNI5sr/p9I6ZQK/SNu7Q=","secondaryKey":"X3TX6de0wjlwL8Z0vrUH5yqfh9+VTK1/zSLkQQW6VUU=","rights":"DeviceConnect"},{"keyName":"registryRead","primaryKey":"tErSwk7PTVkpctYdyCXI96kp+363Sc/1RG3VI9BjRdc=","secondaryKey":"sW6QKHBpn4nZaTxqyGwWto8/5YSX/SaJpfthRmWNejs=","rights":"RegistryRead"},{"keyName":"registryReadWrite","primaryKey":"+2xXGCdJ/xUJrojB3CJlnr0ehaHlcxfz21uKxD4LyxU=","secondaryKey":"BQIFnkHqW2beqtljCxIFL2lZV+p8b3PjlBiUHwiTEx4=","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/","internalAuthorizationPolicies":[{"KeyName":"scaleunitsend-7c0372ca-9f39-4523-aac3-c95957c52a18-iothub","PrimaryKey":"TGSuPvNGBe5BPFpHzXpe0YsmBeeRmd1iOyzftDIrqa4=","SecondaryKey":"kKuS9fFDe2mx2DLZaShtbx1iYBtMETEDDMtyWI0BKsQ=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:46:29 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:46:29 GMT"},{"KeyName":"owner-026e8bbf-4d8b-49a4-ab7c-4e64482a6222-iothub","PrimaryKey":"c9k645QIlZVb3wX689tzBZj1nZa66ECZIvaplQfUsEg=","SecondaryKey":"Bg6vD9k4SAbbDY+8wGBaKg8JS6wBx9lyZt2yuiNB8Oo=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 16 Jun 2020 21:46:29 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:46:29 GMT"}],"authorizationPolicies":[{"KeyName":"iothubowner","PrimaryKey":"j2oZnewbQ5m0ltOo1u8Fdw/0+zNhlxiTxbZNBhlrFYA=","SecondaryKey":"soHYJR2xNwwYc/sMRZrebUs98GRSiG4mpywazaXggEc=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:46:29 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:46:29 GMT"},{"KeyName":"service","PrimaryKey":"B+hOn7c5ZNTkmaUi59Ko7e+Vtj5iePbRrpn7Sp1MywI=","SecondaryKey":"k4PtPi+uRfFbRtPYyrdufGlk3l8rRK8x1x9OPMbpPR4=","ClaimType":"SharedAccessKey","ClaimValue":"None","Rights":["Listen"],"CreatedTime":"Tue, + 16 Jun 2020 21:46:29 GMT","ModifiedTime":"Tue, 16 Jun 2020 21:46:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNjOTg1M2EtYjA2My00MjE3LTg4OWEtYWM3MjI2Y2U3MThl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzRiZDg4ZTAtY2M1Mi00ZDllLTlkZWQtMTkzOTE0ODAyNzUy?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10192,7 +10243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:21 GMT + - Tue, 16 Jun 2020 21:46:54 GMT expires: - '-1' pragma: @@ -10225,7 +10276,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMzNjOTg1M2EtYjA2My00MjE3LTg4OWEtYWM3MjI2Y2U3MThl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfNzRiZDg4ZTAtY2M1Mi00ZDllLTlkZWQtMTkzOTE0ODAyNzUy?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10237,7 +10288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:51 GMT + - Tue, 16 Jun 2020 21:47:24 GMT expires: - '-1' pragma: @@ -10272,20 +10323,20 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqkUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjbEU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2397' + - '2335' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:52 GMT + - Tue, 16 Jun 2020 21:47:25 GMT expires: - '-1' pragma: @@ -10322,7 +10373,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -10332,7 +10383,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 18:00:53 GMT + - Tue, 16 Jun 2020 21:47:27 GMT expires: - '-1' pragma: @@ -10367,7 +10418,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10380,7 +10431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:54 GMT + - Tue, 16 Jun 2020 21:47:26 GMT expires: - '-1' pragma: @@ -10419,20 +10470,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDqkUA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-c931dacf82.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLjbEU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-bfc02e7433.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2397' + - '2335' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:54 GMT + - Tue, 16 Jun 2020 21:47:27 GMT expires: - '-1' pragma: @@ -10473,13 +10524,13 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/failover?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12/failover?api-version=2019-03-22 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -10487,11 +10538,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:00:56 GMT + - Tue, 16 Jun 2020 21:47:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih pragma: - no-cache server: @@ -10522,7 +10573,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10534,7 +10585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:01:12 GMT + - Tue, 16 Jun 2020 21:47:45 GMT expires: - '-1' pragma: @@ -10569,7 +10620,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10581,7 +10632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:01:42 GMT + - Tue, 16 Jun 2020 21:48:15 GMT expires: - '-1' pragma: @@ -10616,7 +10667,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10628,7 +10679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:02:12 GMT + - Tue, 16 Jun 2020 21:48:46 GMT expires: - '-1' pragma: @@ -10663,7 +10714,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10675,7 +10726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:02:43 GMT + - Tue, 16 Jun 2020 21:49:15 GMT expires: - '-1' pragma: @@ -10710,7 +10761,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10722,7 +10773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:03:13 GMT + - Tue, 16 Jun 2020 21:49:46 GMT expires: - '-1' pragma: @@ -10757,7 +10808,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10769,7 +10820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:03:43 GMT + - Tue, 16 Jun 2020 21:50:17 GMT expires: - '-1' pragma: @@ -10804,7 +10855,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10816,7 +10867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:04:14 GMT + - Tue, 16 Jun 2020 21:50:46 GMT expires: - '-1' pragma: @@ -10851,7 +10902,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10863,7 +10914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:04:44 GMT + - Tue, 16 Jun 2020 21:51:17 GMT expires: - '-1' pragma: @@ -10898,7 +10949,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10910,7 +10961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:05:15 GMT + - Tue, 16 Jun 2020 21:51:47 GMT expires: - '-1' pragma: @@ -10945,7 +10996,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -10957,7 +11008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:05:44 GMT + - Tue, 16 Jun 2020 21:52:17 GMT expires: - '-1' pragma: @@ -10992,7 +11043,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11004,7 +11055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:06:15 GMT + - Tue, 16 Jun 2020 21:52:48 GMT expires: - '-1' pragma: @@ -11039,7 +11090,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11051,7 +11102,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:06:45 GMT + - Tue, 16 Jun 2020 21:53:18 GMT expires: - '-1' pragma: @@ -11086,7 +11137,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11098,7 +11149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:07:15 GMT + - Tue, 16 Jun 2020 21:53:48 GMT expires: - '-1' pragma: @@ -11133,7 +11184,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11145,7 +11196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:07:46 GMT + - Tue, 16 Jun 2020 21:54:19 GMT expires: - '-1' pragma: @@ -11180,7 +11231,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11192,7 +11243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:08:16 GMT + - Tue, 16 Jun 2020 21:54:49 GMT expires: - '-1' pragma: @@ -11227,7 +11278,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11239,7 +11290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:08:46 GMT + - Tue, 16 Jun 2020 21:55:19 GMT expires: - '-1' pragma: @@ -11274,7 +11325,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Running"}' @@ -11286,7 +11337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:09:17 GMT + - Tue, 16 Jun 2020 21:55:49 GMT expires: - '-1' pragma: @@ -11321,7 +11372,101 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfOGIzMGJjMzktOWI0Ni00MjU0LTgxZTctNmZmM2IxNzI4YTc2?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Jun 2020 21:56: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 16 Jun 2020 21:56: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfZmI3MTc0NmEtMGM2OC00YjAwLThlMTAtZjE4MTJkMzNhMDU1?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11333,7 +11478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:09:47 GMT + - Tue, 16 Jun 2020 21:57:20 GMT expires: - '-1' pragma: @@ -11370,7 +11515,7 @@ interactions: accept-language: - en-US method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: string: '' @@ -11380,7 +11525,7 @@ interactions: content-length: - '0' date: - - Sun, 14 Jun 2020 18:09:48 GMT + - Tue, 16 Jun 2020 21:57:22 GMT expires: - '-1' pragma: @@ -11415,7 +11560,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2019-03-22 response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11428,7 +11573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:09:48 GMT + - Tue, 16 Jun 2020 21:57:22 GMT expires: - '-1' pragma: @@ -11444,7 +11589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -11467,20 +11612,20 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDrv2Q=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-e952c69e6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLlRk8=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-9354d6774e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '2397' + - '2335' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:09:48 GMT + - Tue, 16 Jun 2020 21:57:22 GMT expires: - '-1' pragma: @@ -11517,13 +11662,13 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2019-03-22 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bHOU=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-euap","name":"vishalg-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG1D7I=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"vishalg-euap","endpoint":"sb://iothub-ns-vishalg-eu-1036652-c086004927.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://vishalgoneboxsbnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=vishalg-slowqueue2","name":"slowqueue2","id":"ac634d18-4fb5-42e2-9885-25fd4bfae4a0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"},{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=deadqueuetest","name":"deadqueue","id":"88d2a443-b1a0-4f6b-9815-a88d7414cc77","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=vishalgstoragev2;AccountKey=****","containerName":"jsontest","fileNameFormat":"{iothub}_{partition}/{YYYY}_{MM}/{DD}_{HH}_{mm}.json","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":10485760,"encoding":"json","name":"jsontestep","id":"247a72ba-e596-4dc5-be1f-7989711dc273","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"vishalg"}]},"routes":[{"name":"jsonstorageroute","source":"DeviceMessages","condition":"true","endpointNames":["jsontestep"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"deadroute","source":"DeviceMessages","condition":"true","endpointNames":["deadqueue"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-1","name":"sapan-iot-1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"gfd":"gfh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAAAytb+Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"enrichments":[],"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South - Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"enrichments":[],"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sapan-iot-1","endpoint":"sb://iothub-ns-sapan-iot-1608720-6d3fdb40e2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=sapanstorage1;AccountKey=****","containerName":"testc","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"storage1","id":"e1a7703b-1962-48b2-9c43-3d817392aa7c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"sapan-rg"}]},"routes":[{"name":"route1","source":"TwinChangeEvents","condition":"true","endpointNames":["storage1"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT17H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT3H","maxDeliveryCount":40}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":25,"defaultTtlAsIso8601":"PT11H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT17H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/RoutingRunnerScenarioTests-hub","name":"RoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RoutingRunnerScenarioTests-rg","etag":"AAAAAA4AegE=","properties":{"locations":[{"location":"South + Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"RoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"routingrunnerscenariotest","endpoint":"sb://iothub-ns-routingrun-1620581-7f4b19c2b2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbqtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbqTest-sbq","name":"RoutingRunnerScenarioTestsSbqTest-sbq","id":"9ec58066-d8d2-4987-85d7-b46e93446989","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestssbtopictest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsSbTopicTest-sbt","name":"RoutingRunnerScenarioTestsSbTopicTest-sbt","id":"482e40f0-1eac-4674-b50c-48eff2948b68","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://routingrunnerscenariotestsehtest-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=RoutingRunnerScenarioTestsEhTest-eh","name":"RoutingRunnerScenarioTestsEhTest-eh","id":"50a95a4a-bde8-4e85-9760-77b2ebeed2d6","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=routingrunsttestac;AccountKey=****","containerName":"routingrunsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"routingrunsttestac","id":"51239e82-6c64-496d-8b20-8408de5ad58f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"RoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsEhTest-eh"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName @@ -11535,35 +11680,35 @@ interactions: = ''UTF-32''","endpointNames":["RoutingRunnerScenarioTestsSbTopicTest-sbt"],"isEnabled":true},{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["routingrunsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West + = ''UTF-32''","endpointNames":["routingrunsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EgMgmtTest-rg/providers/Microsoft.Devices/IotHubs/EgMgmtTest-hub","name":"EgMgmtTest-hub","type":"Microsoft.Devices/IotHubs","location":"West US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EgMgmtTest-rg","etag":"AAAAAA+8cJQ=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EgMgmtTest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"egmgmttest-hub","endpoint":"sb://iothub-ns-egmgmttest-1626137-c697d5c7b8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"B1","tier":"Basic","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinctest/providers/Microsoft.Devices/IotHubs/sachinctest0515arm","name":"sachinctest0515arm","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sachinctest","etag":"AAAAAAysmpk=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sachinctest0515arm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"sachinctest0515arm","endpoint":"sb://iothub-ns-sachinctes-1643119-627b7767d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-gen/providers/Microsoft.Devices/IotHubs/ea-genhub","name":"ea-genhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-gen","etag":"AAAAAAyt5FA=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAAA+cPuM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"testendpoint2","id":"4b0fb171-fbcd-4031-9e01-7639acd55398","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"principalId":"4f73c8d4-090d-4c6a-bc01-de119d91e3f0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-genhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-genhub","endpoint":"sb://iothub-ns-ea-genhub-1647445-5ddfdc94ff.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-iot-hub","name":"askhura-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"tagkey":"tagvalue","foo":"bar"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"askhura-test-rg","etag":"AAAAABIHoUo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"testrule14","action":"Reject","ipMask":"192.168.1.234"}],"hostName":"askhura-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-iot-hub","endpoint":"sb://iothub-ns-askhura-io-1648528-e856d03cc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurkuloneboxbillingns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=fullqueue2","name":"queue-endpoint","id":"a716d889-d131-48bb-8bdd-9e667958c89f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-iot-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"testeh","id":"edc2275d-5f74-4f08-9555-50905b567f7a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=0717adls2;AccountKey=****","containerName":"hirachyshishu1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"aaaaaa","id":"d8ab0b4d-faeb-4557-a976-92a64413ae10","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"teststorage","id":"4aa10acb-a1a5-41d0-a7b3-fea883eff17e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=affandarrgdisks205;AccountKey=****","containerName":"pnptest3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"iliesendpoint","id":"9fe146f2-9a47-419d-a424-ab83e11a7e49","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affandarrg"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testextension","id":"b9108ec6-380f-4e86-aa7f-90f172923170","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"testendpoint1","id":"14a526a0-70d1-4110-939e-d21eb5a95fc4","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{mm}/{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"sgdfgdfgd","id":"84727b46-89d4-481a-8c90-909075629138","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"adadfasdasd","id":"3051e742-b322-4f50-b04b-059b4e716271","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"storage-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"icmtest","source":"DeviceMessages","condition":"true","endpointNames":["teststorage"],"isEnabled":true},{"name":"dfgdgd","source":"DeviceMessages","condition":"true","endpointNames":["aaaaaa"],"isEnabled":true},{"name":"service-queue-endpoint","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT6H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maxgtest/providers/Microsoft.Devices/IotHubs/maxgpgtest","name":"maxgpgtest","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maxgtest","etag":"AAAAAAysnN8=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxgpgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"maxgpgtest","endpoint":"sb://iothub-ns-maxgpgtest-1669398-0ab6e73e26.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asrudra/providers/Microsoft.Devices/IotHubs/asrudra-iot-hub","name":"asrudra-iot-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"adsfdsa":"ssdfgh"},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"asrudra","etag":"AAAAAAy29hY=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asrudra-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asrudra-iot-hub","endpoint":"sb://iothub-ns-asrudra-io-1707361-d0acb8227f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub","name":"eliohub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAystMg=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub","endpoint":"sb://iothub-ns-eliohub-1766795-c81a49aca3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eliorg/providers/Microsoft.Devices/IotHubs/eliohub2","name":"eliohub2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eliorg","etag":"AAAAAAy1SfE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMas=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAAA4QKCE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eliohub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eliohub2","endpoint":"sb://iothub-ns-eliohub2-1766902-3fffe330de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm","name":"dmpypin-cdm","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2jrg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dmpypin-cdm","endpoint":"sb://iothub-ns-dmpypin-cd-1791907-fbf12ba05a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cymgtest/providers/Microsoft.Devices/IotHubs/cymgtest","name":"cymgtest","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"cymgtest","etag":"AAAAABHqbwY=","properties":{"locations":[{"location":"West Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cymgtest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cymgtest","endpoint":"sb://iothub-ns-cymgtest-1795267-6f4620a3c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jichangrg/providers/Microsoft.Devices/IotHubs/testopsmon","name":"testopsmon","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jichangrg","etag":"AAAAAAynKDs=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAAA3bMnk=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testopsmon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testopsmon","endpoint":"sb://iothub-ns-testopsmon-1795455-0c0fa49709.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dmpypin-cdm/providers/Microsoft.Devices/IotHubs/dmpypin-cdm-pvt","name":"dmpypin-cdm-pvt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dmpypin-cdm","etag":"AAAAABG2kBs=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dmpypin-cdm-pvt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dmpypin-cdm-pvt","endpoint":"sb://iothub-ns-dmpypin-cd-1820624-aa7de2a50e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/infradeploymentverification/providers/Microsoft.Devices/IotHubs/infra-edge-validation-hub","name":"infra-edge-validation-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"infradeploymentverification","etag":"AAAAAAyswd4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAAA3bM90=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3aC4s=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"infra-edge-validation-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"infra-edge-validation-hub","endpoint":"sb://iothub-ns-infra-edge-1848973-1557c6e6f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ailn-test/providers/Microsoft.Devices/IotHubs/ailn-test","name":"ailn-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ailn-test","etag":"AAAAABG3EIk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ailn-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ailn-test","endpoint":"sb://iothub-ns-ailn-test-1928317-527bf96957.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-canary-test","name":"maga-canary-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABG0o7o=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-canary-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-canary-test","endpoint":"sb://iothub-ns-maga-canar-1959928-6aa1717b6e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"service-bus","id":"98af9ae8-0dd9-4c16-b575-7212bfe7a7e3","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["service-bus"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jl20190730/providers/Microsoft.Devices/IotHubs/postame20190730-westus","name":"postame20190730-westus","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jl20190730","etag":"AAAAAAynVVE=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"postame20190730-westus.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"postame20190730-westus","endpoint":"sb://iothub-ns-postame201-1964086-f79b3dddb1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test","name":"shsin-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy4uNo=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test","endpoint":"sb://iothub-ns-shsin-test-2040721-cd3b63dcc7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsin-test/providers/Microsoft.Devices/IotHubs/shsin-test1","name":"shsin-test1","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shsin-test","etag":"AAAAAAy5I0k=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shsin-test1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"shsin-test1","endpoint":"sb://iothub-ns-shsin-test-2040889-36e6fd089c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S2","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hubhikari/providers/Microsoft.Devices/IotHubs/lanhikari","name":"lanhikari","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"hubhikari","etag":"AAAAAAyuTRc=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"lanhikari.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"lanhikari","endpoint":"sb://iothub-ns-lanhikari-2074876-980b1efdaf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-walmart-test","name":"maga-walmart-test","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAAys834=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-walmart-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-walmart-test","endpoint":"sb://iothub-ns-maga-walma-2085126-9d8639cd04.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://magaoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_maga-rg;SharedAccessKey=****;EntityPath=test-1","name":"maga-sb","id":"25db0af1-47e1-4c05-b496-3fe45b8a30fd","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route-1","source":"DeviceMessages","condition":"false","endpointNames":["maga-sb"],"isEnabled":true},{"name":"route-2","source":"DeviceMessages","condition":"false","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ea-enclaves/providers/Microsoft.Devices/IotHubs/ea-enclaves","name":"ea-enclaves","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ea-enclaves","etag":"AAAAAAys9d4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAAA3bSjY=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"enrichments":[],"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA4TxTo=","properties":{"locations":[{"location":"North + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ea-enclaves.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ea-enclaves","endpoint":"sb://iothub-ns-ea-enclave-2090442-9a1852452f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vishalg/providers/Microsoft.Devices/IotHubs/vishalg-canary","name":"vishalg-canary","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"vishalg","etag":"AAAAABG4zHE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vishalg-canary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vishalg-canary","endpoint":"sb://iothub-ns-vishalg-ca-2160935-0a5a87efe0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vishalg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"queue-endpoint","id":"37bab955-5a1d-4ea0-85f0-57e7f0b0dab0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=alkliniothubcit;AccountKey=****","containerName":"alklindesktopgvd664qrouting","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"0baf4317-6d55-4da4-b43f-22cdd7b18282","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-Storage-WestUS"}]},"routes":[{"name":"default","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"Storage-Route","source":"DeviceMessages","condition":"true","endpointNames":["storage"],"isEnabled":true},{"name":"queuq-route","source":"DeviceMessages","condition":"true","endpointNames":["queue-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":3}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/test-hub-rest","name":"test-hub-rest","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABLTxns=","properties":{"locations":[{"location":"North Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-rest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-rest","endpoint":"sb://iothub-ns-test-hub-r-2284918-1f8a1522c6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testMsg/providers/Microsoft.Devices/IotHubs/testMsgEnrichmentfkx2le3c","name":"testMsgEnrichmentfkx2le3c","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"testMsg","etag":"AAAAAA3lOHY=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQk=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAAA3aDQU=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAAA3jgMQ=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"2cd0cae8-c357-49e0-b817-a4b62461a2df","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAAA3bUuo=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testMsgEnrichmentfkx2le3c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"testmsgenrichmentfkx2le3c","endpoint":"sb://iothub-ns-testmsgenr-2285845-bcf3134ff8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://contososbnamespacefkx2le3c.servicebus.windows.net:5671/;SharedAccessKeyName=AuthRules_sb_queue;SharedAccessKey=****;EntityPath=ContosoSBQueuefkx2le3c","name":"ContosoSBQueueEndpoint","id":"c09328cb-8421-4dc6-aade-8dddcc75e0ed","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=contosostoragefkx2le3c;AccountKey=****","containerName":"contosoresults","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"ContosoStorageEndpoint","id":"be2db98d-a24e-4ec0-bbee-43d9a10a2529","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"testMsg"}]},"routes":[{"name":"ContosoStorageRoute","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["ContosoStorageEndpoint"],"isEnabled":true},{"name":"ContosoSBQueueRoute","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["ContosoSBQueueEndpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-hub-test","name":"ns-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00NE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-hub-test","endpoint":"sb://iothub-ns-ns-hub-tes-2286887-86395f1d77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sanand-rg/providers/Microsoft.Devices/IotHubs/ns-test-east-2","name":"ns-test-east-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sanand-rg","etag":"AAAAABG00aw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ns-test-east-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ns-test-east-2","endpoint":"sb://iothub-ns-ns-test-ea-2286965-2163ac7397.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xinyiz-distributedtracing/providers/Microsoft.Devices/IotHubs/xinyiz-distributedtracing","name":"xinyiz-distributedtracing","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"xinyiz-distributedtracing","etag":"AAAAABG5oQY=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-rule","action":"Accept","ipMask":"127.0.0.0/31"}],"hostName":"xinyiz-distributedtracing.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"xinyiz-distributedtracing","endpoint":"sb://iothub-ns-xinyiz-dis-2292448-942012905e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eriwan-d2/providers/Microsoft.Devices/IotHubs/eriwand2","name":"eriwand2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"eriwan-d2","etag":"AAAAABG5oJQ=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"eriwand2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eriwand2","endpoint":"sb://iothub-ns-eriwand2-2292543-fb35babf6d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-hub","name":"dexterm-hub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAy3cjw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"dexterm-hub","endpoint":"sb://iothub-ns-dexterm-hu-2321449-422803a3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"adc82a8a-b065-47cd-b1a2-efe496ea368e","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dexternroutes","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true},{"name":"dextern-iot-hub-edgedevice","source":"DeviceMessages","condition":"$twin.tags.dexteredgedevice.troubleshoot=\"true\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dexterm-rg/providers/Microsoft.Devices/IotHubs/dexterm-testiothubcreate","name":"dexterm-testiothubcreate","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dexterm-rg","etag":"AAAAAAyn5SQ=","properties":{"locations":[{"location":"West @@ -11571,70 +11716,75 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-testiothubcreate2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-testiothubcreate2","endpoint":"sb://iothub-ns-dexterm-te-2333896-86c51747ae.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dextermrgneurope/providers/Microsoft.Devices/IotHubs/dexterm-hub-northeurope","name":"dexterm-hub-northeurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"dextermrgneurope","etag":"AAAAAAy6Rp4=","properties":{"locations":[{"location":"West Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dexterm-hub-northeurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dexterm-hub-northeurope","endpoint":"sb://iothub-ns-dexterm-hu-2357308-ee364cee08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://dextermeventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_dexterm-hub-northeurope;SharedAccessKey=****;EntityPath=dextermeventhub1","name":"dextermeventhub","id":"de045626-d820-4873-b411-629ec8bda685","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"dexterm-rg"}],"storageContainers":[]},"routes":[{"name":"dextermepforneuropehub","source":"DeviceMessages","condition":"$body.Weather.Temperature > 30 and $twin.tags.shamik.troubleshoot=\"yes\"","endpointNames":["dextermeventhub"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/csharp-iotuap-eastus-01/providers/Microsoft.Devices/IotHubs/csharp-iotuap-eastus-01","name":"csharp-iotuap-eastus-01","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"csharp-iotuap-eastus-01","etag":"AAAAAAy5Qis=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAAA3bjsE=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAAA3aDsI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"csharp-iotuap-eastus-01.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"csharp-iotuap-eastus-01","endpoint":"sb://iothub-ns-csharp-iot-2502000-b0e5c9334a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=csharpiotuapeastus01;AccountKey=****","containerName":"aziotbld"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repartitiontest/providers/Microsoft.Devices/IotHubs/mchai-repartitiontest","name":"mchai-repartitiontest","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"repartitiontest","etag":"AAAAABG+qNc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"mchai-repartitiontest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"mchai-repartitiontest","endpoint":"sb://iothub-ns-mchai-repa-2777938-89278c5cd2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johnlang-resources/providers/Microsoft.Devices/IotHubs/20200124-Eastus2euap-2","name":"20200124-Eastus2euap-2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"johnlang-resources","etag":"AAAAABG1AQk=","properties":{"locations":[{"location":"East US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"20200124-Eastus2euap-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"20200124-eastus2euap-2","endpoint":"sb://iothub-ns-20200124-e-2825107-3d787da118.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixon","name":"zadixon","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAAz+6Ew=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixon.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixon","endpoint":"sb://iothub-ns-zadixon-2886620-31a68f91b9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"messages","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"zadixonstorage","id":"1cae10c1-52ee-41b7-a010-e151c3488aaf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device0","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device0","id":"c56e2b75-e9e3-4087-bae8-a02eb814976c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device1","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device1","id":"60141df3-072f-4b53-b703-b0d690a67047","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}-{partition}-{YYYY}-{MM}-{DD}-{HH}-{mm}.txt","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"device2","id":"e800e4a2-2d4b-44fa-a967-a97816237839","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=zadixon;AccountKey=****","containerName":"device2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"testendpoint","id":"e1db0276-e2e9-4fd6-b679-c6a62c56b204","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zadixon"}]},"routes":[{"name":"twinchanges","source":"TwinChangeEvents","condition":"true","endpointNames":["zadixonstorage"],"isEnabled":false},{"name":"device0","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device0'' ","endpointNames":["device0"],"isEnabled":true},{"name":"device1","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device1'' ","endpointNames":["device1"],"isEnabled":true},{"name":"device2","source":"TwinChangeEvents","condition":"$twin.deviceId = ''device2'' ","endpointNames":["device2"],"isEnabled":true},{"name":"devicemssages","source":"DeviceMessages","condition":"true","endpointNames":["testendpoint"],"isEnabled":true},{"name":"lifecycle","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["testendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgtlab/providers/Microsoft.Devices/IotHubs/maxeasttest","name":"maxeasttest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"mgtlab","etag":"AAAAAA5e5/A=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"b1aa1f62-9807-4618-9353-749b95923c1d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maxeasttest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maxeasttest","endpoint":"sb://iothub-ns-maxeasttes-2898580-aa8bb31e00.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhangyih-test/providers/Microsoft.Devices/IotHubs/zhangyih","name":"zhangyih","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zhangyih-test","etag":"AAAAAAyt9QY=","properties":{"locations":[{"location":"West US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zhangyih.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zhangyih","endpoint":"sb://iothub-ns-zhangyih-2922140-bbf707e77d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://zhangyih-testsb.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_zhangyih-test;SharedAccessKey=****;EntityPath=test-queue","name":"zhangyih-sb-queue","id":"471d8b6b-f1a6-4d62-a761-752474e7e689","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"zhangyih-test"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=ihtest001kv;AccountKey=****","containerName":"insights-logs-auditevent","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"zhangyih-storage-endpoint","id":"164d47f1-f764-4a69-a467-eb20e02bd8ce","subscriptionId":"2db1b828-b94e-4c59-87ae-cc9d0f19baaf","resourceGroup":"ih-test-001-kv-rg"}]},"routes":[{"name":"test-sb-queue","source":"DeviceMessages","condition":"level=\"critical\"","endpointNames":["zhangyih-sb-queue"],"isEnabled":true},{"name":"test_telemetry","source":"DeviceMessages","condition":"level=\"storage\"","endpointNames":["zhangyih-storage-endpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rechaniothubcit-Migrated/providers/Microsoft.Devices/IotHubs/TeshHubInCentralUs","name":"TeshHubInCentralUs","type":"Microsoft.Devices/IotHubs","location":"centralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rechaniothubcit-Migrated","etag":"AAAAAA3nKR4=","properties":{"locations":[{"location":"Central - US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA3aFWM=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAAA9lL6w=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"3cbb0f6d-0014-49b3-a779-7b2d1eac64d1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAAA3aGHY=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rezas-rg/providers/Microsoft.Network/privateEndpoints/skintali-petest2"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","name":"skintali-petest.07cdb4a7-8f99-495d-bd6a-10beccf3f513","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"},{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sachinc-private/providers/Microsoft.Network/privateEndpoints/sachinctestpe1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest/PrivateEndpointConnections/skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","name":"skintali-petest.4271cfc7-7b88-4812-84fa-cdfa1a87d5cd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"0ccb6835-53ad-4574-a666-7d7155ba9978","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAAA3b2PI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAAA3b2PE=","properties":{"locations":[{"location":"Central + US","role":"primary"},{"location":"East US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"TeshHubInCentralUs.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"teshhubincentralus","endpoint":"sb://iothub-ns-teshhubinc-3005000-45690d045f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub1","name":"raj-plain-hub1","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AmE=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub1","endpoint":"sb://iothub-ns-raj-plain-3037151-d90764d862.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files1"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raj-msi-rg/providers/Microsoft.Devices/IotHubs/raj-plain-hub2","name":"raj-plain-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"raj-msi-rg","etag":"AAAAABG1AnA=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raj-plain-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raj-plain-hub2","endpoint":"sb://iothub-ns-raj-plain-3060299-20d447f3de.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rajmsistorage;AccountKey=****","containerName":"files3"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skintali-test/providers/Microsoft.Devices/IotHubs/skintali-petest","name":"skintali-petest","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"skintali-test","etag":"AAAAABG1KNU=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Reject","ipMask":"1.2.3.4"}],"hostName":"skintali-petest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"skintali-petest","endpoint":"sb://iothub-ns-skintali-p-3065322-25f4e88e4a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/routing-msi-jedi/providers/Microsoft.Devices/IotHubs/msitestwestcentralus","name":"msitestwestcentralus","type":"Microsoft.Devices/IotHubs","location":"westcentralus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"routing-msi-jedi","etag":"AAAAAAwC07g=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prashmo-rg/providers/Microsoft.Devices/IotHubs/prashmopnpt2","name":"prashmopnpt2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"prashmo-rg","etag":"AAAAABHEcos=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"prashmopnpt2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"prashmopnpt2","endpoint":"sb://iothub-ns-prashmopnp-3093165-60dd1c9f29.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ankurepr-rg/providers/Microsoft.Devices/IotHubs/ankurepr1","name":"ankurepr1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ankurepr-rg","etag":"AAAAABHEcqk=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ankurepr1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ankurepr1","endpoint":"sb://iothub-ns-ankurepr1-3097028-01f3fb42af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://ankurcanaryns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr-rg;SharedAccessKey=****;EntityPath=ankurfullqforever","name":"fullqueueendpoint2","id":"e285e528-24f7-424d-8667-5c244bb0ade0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankur-centraluseuap-rg"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"otherEH","id":"071f8f89-9cf6-4695-91e2-4009f415e415","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"},{"connectionString":"Endpoint=sb://ankurcentraluseuap.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ankurepr1;SharedAccessKey=****;EntityPath=ankurreprohub","name":"aanadsfsdf","id":"69b50fc1-5325-4421-83f2-60c6c795884a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ankurcentralusns-rp"}],"storageContainers":[]},"routes":[{"name":"eventsroute","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"otherehroute","source":"DeviceMessages","condition":"true","endpointNames":["otherEH"],"isEnabled":true},{"name":"fullqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["fullqueueendpoint2"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S3","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shishu-resourcegroup/providers/Microsoft.Devices/IotHubs/shishu-hub12partitions","name":"shishu-hub12partitions","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"shishu-resourcegroup","etag":"AAAAAA+VcBk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","authenticationType":"keyBased","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","authenticationType":"keyBased","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","authenticationType":"keyBased","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"shishu-hub12partitions.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":12,"partitionIds":["0","1","2","3","4","5","6","7","8","9","10","11"],"path":"shishu-hub12partitions","endpoint":"sb://iothub-ns-shishu-hub-3286090-51dbadadf7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://shishu.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=queue","name":"queueendpoint","id":"4c681f28-44d8-43ac-a623-d2f0578c23ee","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://shishuqueue.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-resourcegroup;SharedAccessKey=****;EntityPath=iothub_to_device/lifecycleupdates","name":"specialqueueendpoint","id":"98dd49e3-6af7-4573-8198-66ca53e18bbc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub","name":"eventhub1","id":"38dca58d-7963-4c74-99be-d917172fb1a1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://aaaaaaaaaaaaaaaaaaaaaaaaaaaaa.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=eventhub2","name":"queue1","id":"c8c8d6d4-43d0-4768-bdc0-d32481435dbb","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"shishu-resourcegroup"},{"connectionString":"Endpoint=sb://reshantms-iothub-ns-acmediscov-3-e4f43c5fa2.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_shishu-hub12partitions;SharedAccessKey=****;EntityPath=acmediscoveryreshantms","name":"endpoint11","id":"c94ca58a-b2df-4d19-8cd2-3e6b54cc8b7b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[]},"routes":[{"name":"queue1route","source":"DeviceMessages","condition":"true","endpointNames":["queue1"],"isEnabled":true},{"name":"specialqueueroute","source":"DeviceMessages","condition":"true","endpointNames":["specialqueueendpoint"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusQueueRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusQueueRoutingRunnerScenarioTests-hub","name":"ServiceBusQueueRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg","etag":"AAAAAA8m4Io=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusQueueRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebusqueueroutingrun","endpoint":"sb://iothub-ns-servicebus-3298604-c22658faea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://servicebusqueueroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusQueueRoutingRunnerScenarioTests-sbq","name":"ServiceBusQueueRoutingRunnerScenarioTests-sbq","id":"6e1de923-2ae1-4f6a-9759-a95a7ee01662","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusQueueRoutingRunnerScenarioTests-rg"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBQueueMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBQueueMessagesWithBody''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBQueueMessagesWithAppProperties''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true},{"name":"RouteToSBQueueMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusQueueRoutingRunnerScenarioTests-sbq"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBusTopicRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/ServiceBusTopicRoutingRunnerScenarioTests-hub","name":"ServiceBusTopicRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg","etag":"AAAAAA8nY0I=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ServiceBusTopicRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"servicebustopicroutingrun","endpoint":"sb://iothub-ns-servicebus-3298629-331d05e803.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[{"connectionString":"Endpoint=sb://servicebustopicroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=ServiceBusTopicRoutingRunnerScenarioTests-sbt","name":"ServiceBusTopicRoutingRunnerScenarioTests-sbt","id":"c2c11d23-ed7c-4908-bd5b-48e5739976bc","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ServiceBusTopicRoutingRunnerScenarioTests-rg"}],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"RouteToSBTopicMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToSBTopicMessagesWithBody''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToSBTopicMessagesAppProperties''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true},{"name":"RouteToSBTopicMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["ServiceBusTopicRoutingRunnerScenarioTests-sbt"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/StorageContainerRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/StorageContainerRoutingRunnerScenarioTests-hub","name":"StorageContainerRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"StorageContainerRoutingRunnerScenarioTests-rg","etag":"AAAAAA8n8Wo=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"StorageContainerRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"storagecontainerroutingru","endpoint":"sb://iothub-ns-storagecon-3298667-5de2c3b601.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageconsttestac;AccountKey=****","containerName":"storageconsttestct","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":60,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"storageconsttestac","id":"835b0694-aa10-443c-9ab3-4e2120aaa329","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"StorageContainerRoutingRunnerScenarioTests-rg"}]},"routes":[{"name":"RouteToStorageMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToStorageMessagesWithBody''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToStorageMessagesWithAppProperties''","endpointNames":["storageconsttestac"],"isEnabled":true},{"name":"RouteToStorageMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAAA3cIs4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAAA3cR+g=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","authenticationType":"keyBased","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","authenticationType":"keyBased","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","authenticationType":"keyBased","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":"12670308-8e46-49d5-b4f9-f6d3337aeada","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Network/privateEndpoints/test-pe-andbuc-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2/PrivateEndpointConnections/andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","name":"andbuc-test-pe-create2.6240931b-0c67-47b9-951d-e9f0d868629f","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west - central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA4QsQc=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAAA3+Uv0=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"dt","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South + = ''UTF-32''","endpointNames":["storageconsttestac"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/maga-rg/providers/Microsoft.Devices/IotHubs/maga-cdm-hub","name":"maga-cdm-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"maga-rg","etag":"AAAAABHJ8uU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"maga-cdm-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"maga-cdm-hub","endpoint":"sb://iothub-ns-maga-cdm-h-3350594-51b4024cd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajeev-rg/providers/Microsoft.Devices/IotHubs/rajeev-s2s-hub-test","name":"rajeev-s2s-hub-test","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"rajeev-rg","etag":"AAAAABHKQ5c=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"All","action":"Reject","ipMask":"0.0.0.0/0"}],"hostName":"rajeev-s2s-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rajeev-s2s-hub-test","endpoint":"sb://iothub-ns-rajeev-s2s-3390351-6335ea8ca6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kapil-test2/providers/Microsoft.Devices/IotHubs/kapiltls12","name":"kapiltls12","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"kapil-test2","etag":"AAAAAA1rQ2w=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"kapiltls12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"kapiltls12","endpoint":"sb://iothub-ns-kapiltls12-3391937-58748d9579.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chschill-rg/providers/Microsoft.Devices/IotHubs/chschill-hub","name":"chschill-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"chschill-rg","etag":"AAAAAA2SnoU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"chschill-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"chschill-hub","endpoint":"sb://iothub-ns-chschill-h-3418917-d80ddced2d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-02","name":"juan-hub-02","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAAA50GdU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-02.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-02","endpoint":"sb://iothub-ns-juan-hub-0-3424026-f31469f6f8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://juan-sb-02.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=q1","name":"sbq11111","id":"c89a2c9c-6a03-4604-a3bc-adba698e465a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"jucarpio-test"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://filipstoneboxsbns.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_jucarpio-test;SharedAccessKey=****;EntityPath=filipstfilipst-desktopmaxepmaxroutepartt","name":"topicendpoint1","id":"7dff698f-aa7b-4b96-ade7-00ac417a126c","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-ServiceBus-SouthCentralUS"}],"eventHubs":[{"connectionString":"Endpoint=sb://ailn-iothub-ns-acmemiscop-6-846b9cacec.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=acmemiscoperationsailn","name":"eventhub-endpoint1","id":"914cc7e7-0cd6-4d60-8b00-977e7ffd4897","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"},{"connectionString":"Endpoint=sb://dmpypindesktop-ep-ns-epacmedmpy-1-9af4423801.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_juan-hub-02;SharedAccessKey=****;EntityPath=dmpypindesktop-ep-ehub-tenantacme-8-cf48cbaf85","name":"eventhub-endpoint","id":"0759f7f5-fab3-4534-84a0-c4429b1234b1","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"Default-EventHub-SouthCentralUS"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"erwtewgegf","id":"93ce7830-eff6-43e7-86b7-083ea162adc5","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"vbbdcbcvbvxc","id":"79f233ee-4f2e-4b02-967d-1decca932e4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"test111","id":"a8b1cfbb-65de-4d75-a2a2-8f421d81f1f0","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","name":"routingimprovementtest1","id":"5d40c3ee-9612-4518-a9e7-9e9734b100af","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"},{"connectionString":"DefaultEndpointsProtocol=https;AccountName=aaffanbc6554;AccountKey=****","containerName":"asdfasdf","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"cvgdfgdfghdf","id":"7f3bb21d-57b9-40b9-9392-98f5198ee510","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"affanbcRG982788"}]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sbq11111"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/andbuc-test/providers/Microsoft.Devices/IotHubs/andbuc-test-pe-create2","name":"andbuc-test-pe-create2","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"andbuc-test","etag":"AAAAAA3iQD4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"andbuc-test-pe-create2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"andbuc-test-pe-create2","endpoint":"sb://iothub-ns-andbuc-tes-3485663-5e950dfeeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jucarpio-test/providers/Microsoft.Devices/IotHubs/juan-hub-03","name":"juan-hub-03","type":"Microsoft.Devices/IotHubs","location":"west + central us","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"jucarpio-test","etag":"AAAAABHu+0Y=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"juan-hub-03.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"juan-hub-03","endpoint":"sb://iothub-ns-juan-hub-0-3486613-87c0e2f694.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zadixon/providers/Microsoft.Devices/IotHubs/zadixoncanary","name":"zadixoncanary","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"zadixon","etag":"AAAAABG1hUw=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"zadixoncanary.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"zadixoncanary","endpoint":"sb://iothub-ns-zadixoncan-3512675-47a5e65ed4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubRoutingRunnerScenarioTests-rg/providers/Microsoft.Devices/IotHubs/EventHubRoutingRunnerScenarioTests-hub","name":"EventHubRoutingRunnerScenarioTests-hub","type":"Microsoft.Devices/IotHubs","location":"SouthCentralUS","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"EventHubRoutingRunnerScenarioTests-rg","etag":"AAAAAA8mGIc=","properties":{"locations":[{"location":"South Central US","role":"primary"},{"location":"North Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"EventHubRoutingRunnerScenarioTests-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"eventhubroutingrunnerscen","endpoint":"sb://iothub-ns-eventhubro-3513797-8953f32b5f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhubroutingrunnerscenariotests-ns.servicebus.windows.net:5671/;SharedAccessKeyName=ManageListenSendAuthRule;SharedAccessKey=****;EntityPath=EventHubRoutingRunnerScenarioTests-eh","name":"EventHubRoutingRunnerScenarioTests-eh","id":"8cbe3db4-246e-4c34-b25f-700d9a357d4f","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"EventHubRoutingRunnerScenarioTests-rg"}],"storageContainers":[]},"routes":[{"name":"RouteToEventHubMessagesWithBody","source":"DeviceMessages","condition":"$body.ScenarioName = ''RouteToEventHubMessagesWithBody''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithAppProperties","source":"DeviceMessages","condition":"ScenarioName = ''RouteToEventHubMessagesWithAppProperties''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true},{"name":"RouteToEventHubMessagesWithSystemProperties","source":"DeviceMessages","condition":"$contentEncoding - = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East + = ''UTF-32''","endpointNames":["EventHubRoutingRunnerScenarioTests-eh"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RYFELDMA-DevTest/providers/Microsoft.Devices/IotHubs/PGTestHub","name":"PGTestHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"RYFELDMA-DevTest","etag":"AAAAAA4iqXs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PGTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pgtesthub","endpoint":"sb://iothub-ns-pgtesthub-3530803-56afa1d2d4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nimengan-rg/providers/Microsoft.Devices/IotHubs/nimengan-testhub","name":"nimengan-testhub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"nimengan-rg","etag":"AAAAAA7HkVI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"nimengan-testhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nimengan-testhub","endpoint":"sb://iothub-ns-nimengan-t-3600855-81db239692.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-090526","name":"NenadGroupWhub061320-090526","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaH0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"3f59835c-4046-4e79-a7f1-605c5a627a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-090526.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-0905","endpoint":"sb://iothub-ns-nenadgroup-3618330-10b891681f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-112549","name":"NenadGroupWhub061320-112549","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"d0e7a6fe-40f6-4997-aaee-eda6dcd4e3bc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-112549.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1125","endpoint":"sb://iothub-ns-nenadgroup-3618928-c6097dbd40.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-114108","name":"NenadGroupWhub061320-114108","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaHw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"32cbb243-f99e-4548-bb42-e463d7e89ebf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-114108.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1141","endpoint":"sb://iothub-ns-nenadgroup-3618968-8edd5d21f6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupW-rg/providers/Microsoft.Devices/IotHubs/NenadGroupWhub061320-124152","name":"NenadGroupWhub061320-124152","type":"Microsoft.Devices/IotHubs","location":"West US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupW-rg","etag":"AAAAABCdaIA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"ffb1f48a-2f65-4064-83ce-a450376b4974","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupWhub061320-124152.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupwhub061320-1241","endpoint":"sb://iothub-ns-nenadgroup-3619204-45c946f9d2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061320-011820","name":"NenadGroupEEhub061320-011820","type":"Microsoft.Devices/IotHubs","location":"East US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABARwho=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100},"identity":{"principalId":"a9c19829-9a17-4a28-b1cd-8ea2627a20f4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABDrv2Q=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3626636-e952c69e6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"b35f3c9f-2557-41a0-a041-35900da7af2b","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"principalId":null,"tenantId":null,"type":"None"}}]}' + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"IdentityCreated","provisioningState":"Succeeded","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NenadGroupEE-rg/providers/Microsoft.Devices/IotHubs/NenadGroupEEhub061520-082155","name":"NenadGroupEEhub061520-082155","type":"Microsoft.Devices/IotHubs","location":"East + US","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"NenadGroupEE-rg","etag":"AAAAABHaT50=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"NenadGroupEEhub061520-082155.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"nenadgroupeehub061520-082","endpoint":"sb://iothub-ns-nenadgroup-3633686-6c774ecd7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":100}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps6458/providers/Microsoft.Devices/IotHubs/ps6230","name":"ps6230","type":"Microsoft.Devices/IotHubs","location":"West + US 2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"ps6458","etag":"AAAAABK8BQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ps6230.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ps6230","endpoint":"sb://iothub-ns-ps6230-3639386-9e2facacc0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://eventhub5969.servicebus.windows.net:5671/;SharedAccessKeyName=ps6604;SharedAccessKey=****;EntityPath=ps1395","name":"ps3850","id":"6c38dabd-946a-46db-b8de-fcc440485d16","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"ps6458"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"json","name":"ps7106","id":"87692dcc-dd91-41b0-9d1a-4d9cfe535e69","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pshardcodedstorage1234;AccountKey=****","containerName":"container2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":300,"maxChunkSizeInBytes":314572800,"encoding":"avro","name":"ps673","id":"2bc99b01-b4cb-4942-a5e9-10ec4c3798cf","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"pshardcodedrg1234"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12","name":"iot-hub-for-test-12","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"clitest.rg000001","etag":"AAAAABLlRk8=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-12.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-12","endpoint":"sb://iothub-ns-iot-hub-fo-3640356-9354d6774e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"bf99ccc7-9143-4c50-b8fa-34e27d10e34a","subscriptionId":"91d12660-3dec-467a-be2a-213b5544ddc0","resourceGroup":"clitest.rg000001"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer2"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sapan-rg/providers/Microsoft.Devices/IotHubs/sapan-iot-2","name":"sapan-iot-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"91d12660-3dec-467a-be2a-213b5544ddc0","resourcegroup":"sapan-rg","etag":"AAAAABLlRkM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"sapan-iot-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"sapan-iot-2","endpoint":"sb://iothub-ns-sapan-iot-3640461-a332d4b25a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1}}]}' headers: cache-control: - no-cache content-length: - - '142308' + - '142851' content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:09:59 GMT + - Tue, 16 Jun 2020 21:57:34 GMT expires: - '-1' pragma: @@ -11673,13 +11823,13 @@ interactions: accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-12?api-version=2019-03-22 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjFlMzIxNTAtZWVmNC00NzJiLWEyYjEtYzM4OGNjZWI1YWZk?api-version=2019-03-22&operationSource=os_ih&asyncinfo cache-control: - no-cache content-length: @@ -11687,11 +11837,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:10:01 GMT + - Tue, 16 Jun 2020 21:57:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjFlMzIxNTAtZWVmNC00NzJiLWEyYjEtYzM4OGNjZWI1YWZk?api-version=2019-03-22&operationSource=os_ih pragma: - no-cache server: @@ -11722,7 +11872,7 @@ interactions: - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-iothub/0.12.0 Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfMjNhN2VmYzMtYWM3NS00MzRiLTgzMDAtMDc4ZTQ3NjBmNGZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/operationResults/b3NfaWhfYjFlMzIxNTAtZWVmNC00NzJiLWEyYjEtYzM4OGNjZWI1YWZk?api-version=2019-03-22&operationSource=os_ih&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11734,7 +11884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 14 Jun 2020 18:10:17 GMT + - Tue, 16 Jun 2020 21:57:51 GMT expires: - '-1' pragma: